function ImageSwap(ImagePath){
	$('product-image').src = ImagePath;
}

function getURL(TargetURL){
	document.location.href = TargetURL;
}






function validateForm(theForm)
{
	if (!validRequired(theForm.name,"Name"))
		return false;

	if (!validEmail(theForm.email,"Email Address",false))
		return false;
	
	return true;
}

