/*

	Module Name:- Movie Review Page
	File Name  :- movie_review.js
	Create Date:- 19-Nov-2007
	Intially Create By :- 
	Update History:-
*/
function validate_frm_poll_page(formpkid)
{
	//alert(formpkid);
	with(document.eval('frm_poll_'+formpkid))
	{
		cnt=elements['form_option[]'].length;
		count=0;
		for (i=0;i<cnt;i++)
		{
			if (elements['form_option[]'][i].checked==true)
			{
				count++;
			}
		}
		if(count==0)
		{
			alert("Please select option for rating.");
			return false;
		}
	}
	return true;
}


function showImage(surl)
{
   window.open(surl ,'','resizable=yes,titlebar=no,menubar=no,addressbar=no,statusbar=no,scrollbars=yes,width=650,height=600,left=225,top=50');
   return false;
}
