<!--
function go( sRef ) {
// which option number was selected?
var idx = sRef.selectedIndex;
// if "none" option, exit immediately
if (0 == idx) return;
// get the collection of options
var opts = sRef.getElementsByTagName( 'OPTION' );
// get fully-qualified url from selected option
var url = opts[idx].value;
// load the requested url
window.location = url;
}
function checkform()
			{
				
				if (document.emailform.name.value == "")
				{
				alert("Please enter your fullname ");
				document.emailform.name.focus();
				return false;
				}
				
			
				
				if (document.emailform.email.value.indexOf("@") == -1 || document.email.emailfd.value.indexOf(".") == -1 || document.contactform.email.value == "")
				{
				alert("Please enter valid email address ");
				document.emailform.email.focus();
				return false;
				}
				
				
				
			}
				

//-->
     