<!-- 
//© Infogenix, Inc.  Authorized Use Only.
    function layerOn(layerName) {
    if (document.layers)
    document.layers[layerName].visibility='show';
    else if (document.all)
    document.all[layerName].style.visibility='visible';
    else if (document.getElementById)
    document.getElementById(layerName).style.visibility='visible';
    }
    function layerOff(layerName) {
    if (document.layers)
    document.layers[layerName].visibility='hide';
    else if (document.all)
    document.all[layerName].style.visibility='hidden';
    else if (document.getElementById)
    document.getElementById(layerName).style.visibility='hidden';
    }
    function changeOn(colors) {
    colors.style.backgroundColor="#049262";
    colors.style.cursor="hand";
    }
    function changeOff(colors) {
    colors.style.backgroundColor="#535da9";
    }
    numbertop = Math.floor(Math.random() * 48 + 1);
    numbersm1 = Math.floor(Math.random() * 13 + 1);
    numbersm2 = numbersm1 + 1;
    numbersm3 = numbersm1 + 2;
function forceOpenWindow(theURL,winName,features)
  {
  	theWindow = window.open(theURL,winName,features);
	if (theWindow) theWindow.focus();
  }
//-->