um1 = "salesinfo";
um2 = "e-mail"
um3 = "taggit.com";
um4 = "mailto:"
um5 = "855"
um6 = " 1509"

function sendmail (address) {
	address = address.split("s*");
	address = address.join("@");
	address = address+("?subject=Please contact me about the Query Package.&body=Please type your%20name%20and%20contact%20details%20here");
	window.open ('mailto:'+address,'null','width=100,height=100,scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=no,copyhistory=no');
}

function toggleLayer(whichLayer)
{
     if (document.getElementById)
     {
          // this is the way the standards work
          var style2 = document.getElementById(whichLayer).style;
          style2.display = style2.display? "":"block";
     }
     else if (document.all)
     {
          // this is the way old msie versions work
          var style2 = document.all[whichLayer].style;
          style2.display = style2.display? "":"block";
     }
     else if (document.layers)
     {
          // this is the way nn4 works
          var style2 = document.layers[whichLayer].style;
          style2.display = style2.display? "":"block";
     }
}


