function validateenq(){
	var error = false
	var msg = 'Please complete the following fields\n\n'
	if(window.document.form2.notadd.value == null || window.document.form2.notadd.value == ''){
		error = true
		msg += 'Email address\n'
	}
	if(window.document.form2.notcat.value == null || window.document.form2.notcat.value == '' || window.document.form2.notcat.value == 'please select ..'){
		error = true
		msg += 'Select a product category\n'
	}
	if(error){
		alert(msg)
	}
	else{
		window.document.form2.submit()
	}
}

function EnlargePhoto(imgSRC){
  window.open( "popup.cfm?"+imgSRC, "","resizable=1,HEIGHT=200,WIDTH=200");
}
