Sorry, the JS was not present in my previous email. Paste the below between the 
<script> tags.

See below:

NS4 = (document.layers) ? 1 : 0;
IE4 = (document.all) ? 1 : 0;
ver4 = (NS4 || IE4) ? 1 : 0;

function popUp(boxName,on) {
  if (on) {
    if (NS4) {
      document.layers[boxName].visibility = "show";
    } else {
      document.all[boxName].style.visibility = "visible";
    }
  } else {
    if (NS4) {
      document.layers[boxName].visibility = "hide";
    } else {
      document.all[boxName].style.visibility = "hidden";
    }
  }
}



______________________________________________________________________
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to