//汎用
function wopen(url,winname,width,height)
{
window.open(url,winname,'toolbar=yes,scrollbars=yes,location=no,resizable=yes,directories=no,status=no,menubar=no,width=' + width +  ',height=' + height);
}
//ヘッダーのメルマガ登録用
function wopen1(url)
{
window.open(url,"window1","width=500,height=500,toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}
//フッダーのお問合せ用
function wopen2(url)
{
window.open(url,"window2","width=600,height=500,toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");
}
