function validateProdForm()
{	
	var doc = document.frmProd;
	
	if(doc.txtTitle.value == '')
	{
		alert("Please enter product title")
		doc.txtTitle.focus();
		return false;
	}
	
return true;
}

function showImage(pImage)
{
	var URL = "show_image.asp?image=" + pImage;
	window.open(URL, "ShowImage", "status=0,toolbar=0,location=0,menubar=0,scrollbars=1");
}
