﻿// JScript File

function tabIn(tabID){
    var tabImg=new Array();
    var tabImg_c=new Array();
    var tabImg_cl=new Array();
    var tab=new Array();
    var tabPage=new Array();
    var tabPageBG=new Array();
    var homeImg=new Array();
    
    tabImg[0]="../jpg/tab1a.jpg";
    tabImg_c[0]="../jpg/tab1a_c.jpg";
    tabImg_cl[0]="../jpg/tab1a_cl.jpg";
    tab[0]=document.getElementById("tab0");
    tabPage[0]=document.getElementById("tabPage0");
    tabPageBG[0]="homeMenuTabPageBG00";
    homeImg[0]="../jpg/homeimg00.jpg";
    
    tabImg[1]="../jpg/tab1b.jpg";
    tabImg_c[1]="../jpg/tab1b_c.jpg";
    tabImg_cl[1]="../jpg/tab1b_cl.jpg";
    tab[1]=document.getElementById("tab1");
    tabPage[1]=document.getElementById("tabPage1");
    tabPageBG[1]="homeMenuTabPageBG01";
    homeImg[1]="../jpg/homeimg01.jpg";
    
    tabImg[2]="../jpg/tab1c.jpg";
    tabImg_c[2]="../jpg/tab1c_c.jpg";
    tabImg_cl[2]="../jpg/tab1c_cl.jpg";
    tab[2]=document.getElementById("tab2");
    tabPage[2]=document.getElementById("tabPage2");
    tabPageBG[2]="homeMenuTabPageBG02";
    homeImg[2]="../jpg/homeimg02.jpg";
    
    tabImg[3]="../jpg/tab1d.jpg";
    tabImg_c[3]="../jpg/tab1d_c.jpg";
    tabImg_cl[3]="../jpg/tab1d_cl.jpg";
    tab[3]=document.getElementById("tab3");
    tabPage[3]=document.getElementById("tabPage3");
    tabPageBG[3]="homeMenuTabPageBG03";
    homeImg[3]="../jpg/homeimg03.jpg";
    
    tabImg[4]="../jpg/tab1e.jpg";
    tabImg_c[4]="../jpg/tab1e_c.jpg";
    tab[4]=document.getElementById("tab4");
    tabPage[4]=document.getElementById("tabPage4");
    tabPageBG[4]="homeMenuTabPageBG04";
    homeImg[4]="../jpg/homeimg04.jpg";
    
       for(i=0;i<5;i++){
            if(i==tabID){
                tab[i].src=tabImg_c[i];
                tabPage[i].style.display="block";
                document.getElementById("tabTable").className=tabPageBG[i];
                document.getElementById("homeImg").src=homeImg[i];
            }else if(i==tabID-1){
                tab[i].src=tabImg_cl[i];
                tabPage[i].style.display="none";
            }else{
                tab[i].src=tabImg[i];
                tabPage[i].style.display="none";
            }
         } 
}

function popupwindows(theURL,name,width,height){
	Feature='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+width+',height='+height;
	//MM_openBrWindow(theURL,name,Feature);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}