//Browser Detection
var browser = "";
var a = 300;
var browsername = navigator.appName;
var browserversion = parseInt(navigator.appVersion);
browser2Name=navigator.appName;
browser2Ver=parseInt(navigator.appVersion);
if (browsername == "Netscape") {
    browser = "ns" + browserversion;
} else {
    if (browsername == "Microsoft Internet Explorer") {
        if (browserversion >= 4) {
            browser = "ie" + browserversion;
        } else {
            browser = "ie3";
        }
    }
}

function popNav2(url,name,features) {
  if ((browser == "ns3","ns4") || (browser == "ie4")) {
   popBox = window.open(url,name,features);
   popBox.focus();
     } else {
          if (browser == "ie3") {
          popBox = window.open(url,name,features);
          }  
   }
}

function q_yes() {
	popNav2("vote_yes.php","","width=200,height=180,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=600,top=150");
}
function q_no() {
	popNav2("vote_no.php","","width=200,height=180,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=600,top=150");
}

function questionnaire(sel) {
	popNav2("questionnaires/q_form.php?q="+sel,"","width=600,height=620,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=100,top=150");
}
function ow(sel,la) {
	popNav2("ol_form.php?sel="+sel+"&la="+la,"","width=400,height=390,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=100,top=150");
}
function cl(){document.close();self.close();}
function vw(sel) {
	popNav2("vote_processing.php?sel="+sel,"","width=200,height=180,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=600,top=150");
}
function rw(sel) {
	popNav2("vote_results.php?id_vote="+sel,"","width=400,height=390,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=100,top=150");
}
function ow150(sel) {
	popNav2("ol_150.php?sel="+sel,"","width=460,height=620,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=100,top=150");
}
function ow150win(sel) {
	popNav2("ol_150win.php?sort="+sel,"","width=650,height=620,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=100,top=150");
}
function ow120by(sel) {
	popNav2("ol_120by.php?sel="+sel,"","width=500,height=620,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=100,top=150");
}
function ow120by_win(sel) {
	popNav2("ol_120by_win.php?sort="+sel,"","width=700,height=620,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=100,top=150");
}
function isp(sel,isp,p) {
	popNav2("isp.php?item="+sel+"&isp="+isp+"&p="+p,"","width=600,height=390,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=yes,resizable=yes,left=100,top=150");
}
function video(sel) {
	popNav2("videoshow.php?fn="+sel,"","width=420,height=280,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=100,top=150");
}
function video1() {
	popNav2("videoshow1.html","","width=420,height=280,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=100,top=150");
}
function video2() {
	popNav2("videoshow2.html","","width=420,height=280,toolbar=no,location=no,directoties=no,status=no,menubar=no,scrollbars=no,resizable=yes,left=100,top=150");
}


var tm;

function cancelClose(){
    if(tm) {
        clearTimeout(tm);
    }
}

function showMenu(i) {
    document.getElementById('ddown_menu_'+i).style.display = 'block';
    cancelClose();
}

function closeMenu(i) {
    tm = setTimeout("hideMenu("+i+")",1000);
}

function hideMenu(i) {
    document.getElementById('ddown_menu_'+i).style.display = 'none';
}
