﻿// JScript File

function tabIn(tabID){
    var tab=new Array();
    var tabPage=new Array();
    var tabPageBG=new Array();
    var homeImg=new Array();
    
    tab[0]=document.getElementById("tab0");
    tabPage[0]=document.getElementById("tabPage0");
    tabPageBG[0]="homeMenuTabPageBG00";
    homeImg[0]="imgs/homeImg00.jpg";
    
    tab[1]=document.getElementById("tab1");
    tabPage[1]=document.getElementById("tabPage1");
    tabPageBG[1]="homeMenuTabPageBG01";
    homeImg[1]="imgs/homeImg01.jpg";
    
    tab[2]=document.getElementById("tab2");
    tabPage[2]=document.getElementById("tabPage2");
    tabPageBG[2]="homeMenuTabPageBG02";
    homeImg[2]="imgs/homeImg02.jpg";
    
    tab[3]=document.getElementById("tab3");
    tabPage[3]=document.getElementById("tabPage3");
    tabPageBG[3]="homeMenuTabPageBG03";
    homeImg[3]="imgs/homeImg03.jpg";
    
    tab[4]=document.getElementById("tab4");
    tabPage[4]=document.getElementById("tabPage4");
    tabPageBG[4]="homeMenuTabPageBG04";
    homeImg[4]="imgs/homeImg04.jpg";
    
       for(i=0;i<5;i++){
            if(i==tabID){
				tab[i].className="tabalign";
                tabPage[i].style.display="block";
                document.getElementById("tabTable").className=tabPageBG[i];
                document.getElementById("homeImg").src=homeImg[i];
            }else{
				tab[i].className="tabalignto";
                tabPage[i].style.display="none";
            }
         } 
}

function popupwindows(theURL,name,width,height){
	Feature='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height;
	MM_openBrWindow(theURL,name,Feature);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	//window.open(theURL,winName,features);
}
