conBrowser=1;
  switch1on  = new Image();  switch1on.src  = '/images/nav_home2.gif';
  switch1off = new Image();  switch1off.src = '/images/nav_home.gif';
  switch2on  = new Image();  switch2on.src  = '/images/nav_about2.gif';
  switch2off = new Image();  switch2off.src = '/images/nav_about.gif';
  switch3on  = new Image();  switch3on.src  = '/images/nav_services2.gif';
  switch3off = new Image();  switch3off.src = '/images/nav_services.gif';
  switch4on  = new Image();  switch4on.src  = '/images/nav_contact2.gif';
  switch4off = new Image();  switch4off.src = '/images/nav_contact.gif';
  switch5on  = new Image();  switch5on.src  = '/images/nav_sitemap2.gif';
  switch5off = new Image();  switch5off.src = '/images/nav_sitemap.gif';
  switch6on  = new Image();  switch6on.src  = '/images/nav_privacy_policy2.gif';
  switch6off = new Image();  switch6off.src = '/images/nav_privacy_policy.gif';

function HighLight(musswitch) {
	if (conBrowser) {
		switchnavn = eval(musswitch + "on");
      		document [musswitch].src = switchnavn.src;
    		}
  	}

function UndoHighLight(musswitch) {
	if (conBrowser) {
		switchnavn = eval(musswitch + "off");
		document [musswitch].src = switchnavn.src;
		}
	}
	

<!--

function check_form() {
	for (var i = 0; i < document.forms['genInfo'].elements.length; i++) {
		var FormElement = document.forms['genInfo'].elements[i].name
		 var j;
		 var radio_button_checked;
		 var radio_set;
		 
	 	
		if (FormElement == "requester") {
				if (document.forms['genInfo'].elements[i].value.length == 0)
				{
					alert("You must provide the requester name!")
					return false
				}
			}
		
		if (FormElement == "phone") {
				if (document.forms['genInfo'].elements[i].value.length == 0)
				{
					alert("You must provide your phone number!")
					return false
				}
			}	
			
		if (FormElement == "country") {
				if (document.forms['genInfo'].elements[i].value.length == 0)
				{
					alert("You must provide your country!")
					return false
				}
			}		
		
			
		if (FormElement =="email") {
				var vlength
    			  	vlength=document.forms['genInfo'].elements[i].value.length-1
				if (document.forms['genInfo'].elements[i].value.length == 0)
				{
					alert("You must enter a valid email address.  Example:  Name@ascnet.net")
					return false
				}

  				// Check for a valid email address (Does it contain a "@" and ".")
  				if(document.forms['genInfo'].elements[i].value.indexOf('@', 0) == -1 || document.forms['genInfo'].elements[i].value.indexOf('.',0)==-1)
				{
					alert("You must enter a valid email address.  Example:  Name@ascnet.net")
					return false
				}
 				// Check for a valid email address ("@" or "." cannot be first character)
				if(document.forms['genInfo'].elements[i].value.charAt(0)=='@' || document.forms['genInfo'].elements[i].value.charAt(0)=='.')
				{
					alert("You must enter a valid email address.  Example:  Name@ascnet.net")
					return false
				}
				// Check for a valid email address ("@" or "." cannot be last character)
				if(document.forms['genInfo'].elements[i].value.charAt(vlength)=='@' || document.forms['genInfo'].elements[i].value.charAt(vlength)=='.')
				{
					alert("You must enter a valid email address.  Example:  Name@ascnet.net")
					return false
				}
  				// Check for a valid email address (Cannot have "@." or ".@")
				if(document.forms['genInfo'].elements[i].value.indexOf('@.')!=-1 || document.forms['genInfo'].elements[i].value.indexOf('.@')!=-1)
				{
					alert("You must enter a valid email address.  Example:  Name@ascnet.net")
					return false
				}
			
			}

	}
	return true	

}
//-->

