﻿// JScript ファイル
//var childwindow;
//function OpenWindow(param){
//    var windowname = "IchinomiyaLine.aspx?param=" + param ;
//    childwindow = window.open(windowname,"child","toolbar=no,location=no,directories=no,status=yes,menuber=yes,scrollbars=yes,resizable=yes,width=920,height=450,left=100,top=440,target=_blank ");
//    childwindow.window.focus();
//}

//function deletewindow(){
//    if (!childwindow || childwindow.closed){
//	
//	}
//	else{
//		childwindow.close();
//	}     

//}

var tabparam="";
function InsertParam(value){
    tabparam = value;
}

function DeleteParam(){
    tabparam = "";
}

function TabPanelClick() {
        
    if (tabparam.length >0 ){ 
           
            //IEチェック
            if (navigator.appName=="Microsoft Internet Explorer") {
                iframe1.document.location.reload();
            }  
            else if (navigator.userAgent.indexOf("MSIE")!=-1) {
                iframe1.document.location.reload();
            }

    }

}
function ViewHelp(value){
    var wo1;
    var htmlname;
    if (value == "1"){
        //window.open("./help1.html");
        htmlname = "./help1.html";
    }else if (value == "2"){
        //window.open("./help2.html");
        htmlname = "./help2.html";
    }else if (value == "3"){
        //window.open("./help3.html");
        htmlname = "./help3.html";
    }
    wo1 = window.open(htmlname,"HLEP_AREA","toolbar=no,location=no,directories=no,status=yes,menuber=yes,scrollbars=yes,resizable=yes,width=700,height=700");
    wo1.window.focus();
}