function copystatus(){
    window.status="© 2000 AppNet Solutions Ltd.   All Rights Reserved.";
}

function toggleMenu(currMenu) {	
    // test for ie explorer
    if (document.all) {
        thisMenu = eval("document.all." + currMenu + ".style")
        if (thisMenu.display == "block") {
            thisMenu.display = "none"
        }
        else {
            thisMenu.display = "block"
        }
        return false
     }
    else {
        return true
    }
}

function launch(url,name) {
  window.open(url, name, "status,left=170,top=70,width=500,height=420");
}

function rebate(url,name) {
  window.open(url, name, "status,left=200,top=70,width=500,height=500,scrollbars");
}


function OpenCertDetails()
	{
	thewindow = window.open('https://www.thawte.com/cgi/server/certdetails.exe?code=USAPPN2', 'anew', config='height=400,width=450,toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=yes');
	}
function showtip(current,e,text)
{
   if (document.all)
   {
      thetitle=text.split('<br>')
      if (thetitle.length > 1)
      {
        thetitles=""
        for (i=0; i<thetitle.length; i++)
           thetitles += thetitle[i] + "\r\n"
        current.title = thetitles
      }
      else current.title = text
   }

   else if (document.layers)
   {
       document.tooltip.document.write( 
           '<layer bgColor="#FFFFE7" style="border:1px ' +
           'solid black; font-size:12px;color:#000000;">' + text + '</layer>')
       document.tooltip.document.close()
       document.tooltip.left=e.pageX+5
       document.tooltip.top=e.pageY+5
       document.tooltip.visibility="show"
   }
}

function hidetip()
{
    if (document.layers)
        document.tooltip.visibility="hidden"
}


function submitform(form,url) {
   form.action= url;   
   form.submit();  }