
<!--
BrowserName = navigator.appName;
BrowserVer  = parseInt(navigator.appVersion);
version = "bad";

if((BrowserName == "Netscape" && BrowserVer >= 3) || (BrowserName == "Microsoft Internet Explorer" && BrowserVer >= 3))
  version = "good";

if(version == "good")
{
  menu1_1on = new Image(115,33); menu1_1on.src = "images2/btn/btn_home_on.gif";
  menu1_2on = new Image(115,33); menu1_2on.src = "images2/btn/btn_download_on.gif";
  menu1_3on = new Image(115,33); menu1_3on.src = "images2/btn/btn_success_on.gif";
  menu1_4on = new Image(115,33); menu1_4on.src = "images2/btn/btn_help_on.gif";
    
  menu1_1off = new Image(115,33); menu1_1off.src = "images2/btn/btn_home.gif";
  menu1_2off = new Image(115,33); menu1_2off.src = "images2/btn/btn_download.gif";
  menu1_3off = new Image(115,33); menu1_3off.src = "images2/btn/btn_success.gif";
  menu1_4off = new Image(115,33); menu1_4off.src = "images2/btn/btn_help.gif";
  
}

function img_act(imgName) 
{
  if(version=="good")
  {
    imgOn = eval(imgName + "on.src");
    document [imgName].src = imgOn;
  }
}

function img_inact(imgName) 
{
  if(version=="good")
  {
    imgOff = eval(imgName + "off.src");
    document [imgName].src = imgOff;
  }
}

function img_status(imgName1, imgName2) 
{
  if(version=="good")
  {
    imgStatus = eval(imgName2 + ".src");
    document [imgName1].src = imgStatus;
  }
}

function test_email()
{
  if (document.subscr.email.value.indexOf ('@',0) == -1 ||
      document.subscr.email.value.indexOf ('.',0) == -1)
  {
    alert ("\n Please enter correct e-mail !")
    document.subscr.email.select();
    document.subscr.email.focus();
    return false;
  }
  if(document.subscr.email.value == 'your@e.mail')
  {
    alert ("\n Please enter YOUR e-mail !")
    document.subscr.email.select();
    document.subscr.email.focus();
    return false;
  }

  return false;
}

function surfto(form) 
{
var myindex=form.sel.selectedIndex
if (form.sel.options[myindex].value != "0") {
window.open(form.sel.options[myindex].value, target="main");}                  
}

function wr(a1, a2)
{
document.write("<a href=\""+a1+"."+a2+"\">");
}

function wr2()
{
document.write("</a>");
}
function open_win(url)
{
new_win = window.open(url, 'new_win', 'height=330,width=520,toolbar=no,scrollbars=no,directories=no,status=no,menubar=no,resizable=no'); new_win.focus();
}

//-->
