function openWindow(strURL,strName)
{
	window.open(strURL,strName,'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=650, height=600');
}

function verifyReview()
{
	var x=document.getElementById('form_rate');
	if(x.selectedIndex == 0)
	{
		alert('Please select a rating before submitting review');
		return false;
	}
	return true;
}

