// JavaScript Document

function submit_voet()
{
	var vot = 0;
	if (document.getElementById('votes2').checked == true)	vot = 2;
 	if (document.getElementById('votes1').checked == true)	vot = 1;
	
	if (vot != 0)
		{
		mess = "آيا نظر ";
		if (vot == 1) mess += " موافق ";
		if (vot == 2) mess += " مخالف ";
		mess += "را براي اين پرسش تائيد مي نمائيد ؟";
	
	 	if(confirm(mess))
	 		{ 
      		$("#formpost").html('<form action="vote.php" method="post" enctype="application/x-www-form-urlencoded" name="forms" id="forms"><input type="hidden" name="votes" value="'+vot+'"></form>');
			document.getElementById('forms').submit();
			}
		}
	
}

