function submitFeedback(formID) {
    width = 420;
    height = 300;
    properties = 'width='+width+',height='+height;
	myName=0;
	myEmail=0;
	mySubject=0;
	myMessage=0;
	var theForm = document.getElementById(formID);
	if (theForm != null)
	{
//	alert(theForm.name.value);
    if (theForm.name.value != "")
	{
	  myName = theForm.name.value;
	}
    if (theForm.email.value != "")
	{
	  myEmail = theForm.email.value;
	}	
    if (theForm.subject.value != "")
	{
	  mySubject = theForm.subject.value;
	}		
	if (theForm.message.value != "")
	{
	  myMessage = theForm.message.value;
	}
	
    window.open("contact.php?name="+myName+"&email="+myEmail+"&subject="+mySubject+"&message="+myMessage,'winname',properties);
	}
	else
	{
	  alert('Your web browser is too old. Please upgrade to a newer version. We apologize for the inconvenience. Thankyou.');
	}
   	return 0;
}

function doNothing()
{
}
