<!-- ポップアップ用 -->
function PopUpWindow(URL,Wname,Wwidth,Wheight){
window.open(URL,Wname,"width="+Wwidth+",height="+Wheight+",scrollbars=no,resizable=yes,toolbar=no,location=no,directories=no,status=no");
}
function PopUpWindow2(URL,Wname,Wwidth,Wheight){
window.open(URL,Wname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=no,toolbar=no,location=no,directories=no,status=no");
}
function PopUpWindow3(URL,Wname,Wwidth,Wheight){
window.open(URL,Wname,"width="+Wwidth+",height="+Wheight+",scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=no");
}
function PopUpWindow4(URL,Wname,Wwidth,Wheight){
window.open(URL,Wname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no");
}

<!-- プルダウンメニューリンク用 -->
function selectLink(val){
var flg = val.substr(0,1,2);
var url = val.substr(1);
if (flg == 0)
window.location.href = url;
if (flg == 1)
window.open(url,"","width=540,height=250,scrollbars=yes,resizable=yes");
else if (flg == 2)
window.open(url,"_blank");
}
