function openWin(url, title, width, height, scroll) {
	var load=window.open(url, title, 'width=' + width +', height=' + height + ', resizable=1, scrollbars=' + scroll + ', left=50, top=50');
}


function verify() {
var themessage = "You are required to complete the following fields: ";
if (document.form.email.value=="") {
themessage = themessage + " - Email";
}
if (document.form.subject.value=="") {
themessage = themessage + " -  Subject";
}
if (document.form.comment.value=="") {
themessage = themessage + " -  Comments";
}
if (document.form.name.value=="") {
themessage = themessage + " -  Your Name";
}
//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following fields: ") {
document.form.submit();
}
else {
alert(themessage);
return false;
   }
}
