
function validate(theForm)
{
	if (theForm.firstname.value == "")
	{
		alert("Please Enter First Name");
		theForm.firstname.focus();
		return false;
	}
	if (theForm.lastname.value == "")
	{
		alert("Please Enter Last Name");
		theForm.lastname.focus();
		return false;
	}
	if (theForm.addr1.value == "")
	{
		alert("Please Enter Address 1");
		theForm.addr1.focus();
		return false;
	}
	if (theForm.city.value == "")
	{
		alert("Please Enter City");
		theForm.city.focus();
		return false;
	}
	if (theForm.state.value == "")
	{
		alert("Please Enter State");
		theForm.state.focus();
		return false;
	}
	if (theForm.country.value == "")
	{
		alert("Please Enter Country");
		theForm.country.focus();
		return false;
	}
	if (theForm.phone.value == "")
	{
		alert("Please Enter Phone Number");
		theForm.phone.focus();
		return false;
	}
	if (theForm.email.value == "")
	{
		alert("Please Enter Email Address");
		theForm.email.focus();
		return false;
	}
	return true;
}

function showImg(iStr,pid)
{
	document.getElementById('prodmain').src=iStr;
	//if(pid != "")
	document.getElementById('prod_img').value=pid;
	
}