// JavaScript Document
function ShowLargePic(ThePic){
	if (ThePic != ''){
		window.open('displaylargepic.asp?' + ThePic,'_blank','width=500px,height=375px,scrollbars=yes,resizable=yes,toolbars=no,status=no');
	}
}
function CheckEnqForm(){
	var isError = 0
	var errTxt = "Before Continuing please ensure that have entered information into the following required fields ...\n"
	
	if (frmContact.name.value == ''){isError = 1; errTxt = errTxt + '\n- Your Name.'}
	if (frmContact.company.value == ''){isError = 1; errTxt = errTxt + '\n- Company Name.'}
	if (frmContact.telno.value == ''){isError = 1; errTxt = errTxt + '\n- Contact Telephone No (preferably landline).'}
	if (frmContact.email.value == ''){isError = 1; errTxt = errTxt + '\n- Contact Email Address.'}
	if (frmContact.enquiry.value == ''){isError = 1; errTxt = errTxt + '\n- The Enquiry.'}
	
	if (isError==1){
		alert(errTxt + '\n\nThank you ...');
		return false;
	}else{
		return true;
	}
	
}