function clearIt()
{
	if (document.frm.Other.value=='-Please Enter Your Insurance-')
	{
		document.frm.Other.value='';
		//document.frm.style.text-align = 'left';
	}
} 
  
function ToggleRowDisplay( objTargetButton )
{
     try
     {
          // Variables
          var strDisplay = "block";
          var objTableBody = document.getElementById( "idTableBody" );
          var strButtonValue = "-";
		  var selectedItem;
	
			selectedItem = document.frm.howhear.options[document.frm.howhear.selectedIndex].value;
     // document.frm.insurance.value ="";
          // Toggle Display
          if( selectedItem != "Other" )
          {
               // Hide
               strDisplay = "none";
			  
        //       strButtonValue = "+";
          }
     
          // Toggle the table
          objTableBody.style.display = strDisplay;
          
          // Set button Value
          //objTargetButton.value = strButtonValue;
     }
     catch( expError )
     {
          alert( expError.number + "   " + expError.description );
     }
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=350,height=400,left = 465,top = 312');");
}


