function reviewForm()
{
	
	var category=document.getElementById("cat").value
	var temp = new Array();
	temp = category.split('&');
	
	if(temp[0]=="0")
	{
		alert("Please select Category");
		document.getElementById("category").focus();
		return false;
	}
	if(temp[1]==2)
	{
	
	var type2city=document.getElementById("cityproduct").value
	if(type2city=="0")
	{
		alert("Please select City");
		return false;
	}
	}

	var product=document.getElementById("product").value
	var temp = new Array();
	temp = product.split('&');
	
	if(temp[0]=="0")
	{
		alert("Please select Sub Category");
		return false;
	}
	if(temp[1]==null)
	{
	temp[1]=0;
	}
	
	
	
	
	
	window.open("reviewform.jsp?pid="+product+"&cityidpass="+temp[1],'_top');
	
}

function reviewForm1()
{
	

	var prod=document.getElementById("prod").value
	var cityidpass=document.getElementById("cityidpass").value
	window.open("reviewform.jsp?pid="+prod+"&cityidpass="+cityidpass,'_top');
	
}
