function ImageSwap(ImagePath){
	$('product-image').src = ImagePath;
}

function getURL(TargetURL){
	document.location.href = TargetURL;
}




function validateContact(theForm)
{
	// Customize these calls for your form

	// Start ------->
	if (!validEmail(theForm.email_address,"Email Address",true))
		return false;

	// <--------- End
	
	return true;
}

