function checkContactForm(formRef) {
	if (formRef.ContactName.value=="") {alert("Please type in a contact name."); formRef.ContactName.focus(); return false}
	if (formRef.ContactEmailAddress.value=="") {alert("Please type in an Email Address."); formRef.ContactEmailAddress.focus(); return false}
	}

function openWin(location) {window.open(location,'ViewProduct','width=500,height=610,scrollbars=no,resizeable=no')}
