//ロールオーバー//

function swapImage(btnObj,sURL)
{
btnObj.src = sURL;
}



//ポップアップウィンドウ//
function PopWin(url,w,h) {
	var param = 'width='+w +',height='+h+',scrollbars=no,resizable=yes';
	var win;
	win=window.open(url,"SNViewer", param);
	win.focus();
}





//別窓リンク//

window.onload = function() {
var node_a = document.getElementsByTagName('a');
for (var i in node_a) {
if (node_a[i].className == 'newwin') {
node_a[i].onclick = function() {
window.open(this.href, '', '');
return false;
};
}
}
};



// 販売店ユーザー認証 //
pass_url = "../partner/";
function password() {
   key = document.passF.pass.value;
   if(key == "") alert("パスワードを入力して下さい");
   else document.location = pass_url + key + ".html";
}






//経費削減計算機用 別窓リンク//
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}






