conBrowser=1;
  switch1on  = new Image();  switch1on.src  = '/images/nav_on_01.gif';
  switch1off = new Image();  switch1off.src = '/images/nav_off_01.gif';
  switch2on  = new Image();  switch2on.src  = '/images/nav_on_02.gif';
  switch2off = new Image();  switch2off.src = '/images/nav_off_02.gif';
  switch3on  = new Image();  switch3on.src  = '/images/nav_on_03.gif';
  switch3off = new Image();  switch3off.src = '/images/nav_off_03.gif';
  switch4on  = new Image();  switch4on.src  = '/images/nav_on_04.gif';
  switch4off = new Image();  switch4off.src = '/images/nav_off_04.gif';
  switch5on  = new Image();  switch5on.src  = '/images/nav_on_05.gif';
  switch5off = new Image();  switch5off.src = '/images/nav_off_05.gif';
  switch6on  = new Image();  switch6on.src  = '/images/nav_on_06.gif';
  switch6off = new Image();  switch6off.src = '/images/nav_off_06.gif';
  switch7on  = new Image();  switch7on.src  = '/images/nav_on_07.gif';
  switch7off = new Image();  switch7off.src = '/images/nav_off_07.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;
		}
	}
	

if (document.getElementById) {
 document.writeln('<style type="text/css"><!--')
 document.writeln('.texter {display:none}')
 document.writeln('//--></style>') }

 function getTrimmedString(objj) {
    var str = new String(objj.value);
    while (str.charAt(0) == " ") {
        str = str.substring(1, str.length);
    }
    while (str.charAt(str.length - 1) == " ") {
        str = str.substring(0, str.length - 1);
    }
    return str.toString();
}

function checkForm(f) {
    var name = getTrimmedString(f.name);
    if (name.length == 0) {
        alert("Please fill in your name");
        return false;
    }
    var phone1 = getTrimmedString(f.phone1);
    if (phone1.length == 0) {
        alert("Please fill in a phone number");
        return false;
    }
    return true;
}
 
function openClose(theID) {
 if (document.getElementById(theID).style.display == "block") { document.getElementById(theID).style.display = "none" }
 else { document.getElementById(theID).style.display = "block" } }

 <!--
function check_form() {
	for (var i = 0; i < document.forms['memInfo'].elements.length; i++) {
		var FormElement = document.forms['memInfo'].elements[i].name
		 var j;
		 var radio_button_checked;
		 var radio_set;
		 
				 	 	
		if (FormElement == "name") {
				if (document.forms['memInfo'].elements[i].value.length == 0)
				{
					alert("You must provide your name!")
					return false
				}
			}
		if (FormElement == "phone") {
				if ((document.forms['memInfo'].elements['phone'].value.length == 0 && document.forms['memInfo'].elements['work_cell'].value.length == 0))
				{
					alert("You must provide your phone number or cell number!");
					return false
				}
				
			}
		if (FormElement == "work_cell") {
				if ((document.forms['memInfo'].elements['phone'].value.length == 0 && document.forms['memInfo'].elements['work_cell'].value.length == 0))
				{
					alert("You must provide your phone number or cell number!");
					return false
				}
				
			}	
			
		if (FormElement == "debt") {
				if (document.forms['memInfo'].elements[i].value.length == 0)
				{
					alert("You must provide your tax debt!")
					return false
				}
			}	
	
	if (FormElement =="email") {
				var vlength
    			  	vlength=document.forms['memInfo'].elements[i].value.length-1
				if (document.forms['memInfo'].elements[i].value.length == 0)
				{
					alert("You must enter a valid email address.  Example:  Name@taxincorporated.com")
					return false
				}

  				// Check for a valid email address (Does it contain a "@" and ".")
  				if(document.forms['memInfo'].elements[i].value.indexOf('@', 0) == -1 || document.forms['memInfo'].elements[i].value.indexOf('.',0)==-1)
				{
					alert("You must enter a valid email address.  Example:  Name@taxincorporated.com")
					return false
				}
 				// Check for a valid email address ("@" or "." cannot be first character)
				if(document.forms['memInfo'].elements[i].value.charAt(0)=='@' || document.forms['memInfo'].elements[i].value.charAt(0)=='.')
				{
					alert("You must enter a valid email address.  Example:  Name@taxincorporated.com")
					return false
				}
				// Check for a valid email address ("@" or "." cannot be last character)
				if(document.forms['memInfo'].elements[i].value.charAt(vlength)=='@' || document.forms['memInfo'].elements[i].value.charAt(vlength)=='.')
				{
					alert("You must enter a valid email address.  Example:  Name@taxincorporated.com")
					return false
				}
  				// Check for a valid email address (Cannot have "@." or ".@")
				if(document.forms['memInfo'].elements[i].value.indexOf('@.')!=-1 || document.forms['memInfo'].elements[i].value.indexOf('.@')!=-1)
				{
					alert("You must enter a valid email address.  Example:  Name@taxincorporated.com")
					return false
				}
			
			}
	
		if (FormElement == "debt") {
			var source_string;
			var target_string;
			var source_length;

			target_string = ''
			source_string = document.memInfo.debt.value;
			source_length = source_string.length;

			var no_period;
			var temp_iter;
			no_period = true;

			for(temp_iter=0;temp_iter<source_length && no_period;temp_iter++)
		{
if(source_string.charAt(temp_iter) >= '0' && source_string.charAt(temp_iter) <= '9') 		{
//add the character to the target string
target_string = target_string + source_string.charAt(temp_iter);
}
if(source_string.charAt(temp_iter) == '.') {
no_period = false;
}
}
var new_int;
new_int = parseInt(target_string);

				if (new_int.length == 0 ) {
					alert("Sorry, we only accept cases over $8,000 in tax debt!")
					return false
				}
				if (new_int == " " ) {
					alert("Sorry, we only accept cases over $8,000 in tax debt!")
					return false
				}
				if (new_int < 8000)
				{
					alert("Sorry, we only accept cases over $8,000 in tax debt!")
					return false
				}
			}	
			
	}
	return true	

}
//-->
