// JavaScript Document
function openimage(filename,width,height){
var html = new Array();
html[0] = "<html><head>\n";
html[1] = "<style type=\"text/css\"><!--\n";
html[2] = "body{margin:0}\n";
html[3] = "--></style></head>\n";
html[4] = "<body marginwidth=\"0\" marginheight=\"0\">\n"
html[5] = "<div><img src=\"";
html[6] = filename;
html[7] = "\"></div></body></html>\n"

var windowsize;
windowsize = "width="+width+",height="+height;

newWindow = window.open('','',windowsize+",scrollbars=no");
newWindow.document.open();
newWindow.document.write(html.join(""));
newWindow.document.close();

return false;
}

//web拍手
function wopen1(winnam) {window.open(winnam,"popup3","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,close=yes,width=615,height=740");return false;
}

//通販用メールフォーム
function wopen2(winnam) {window.open(winnam,"popup3","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,close=yes,width=500,height=650");return false;
}

//イベント
function wopen3(winnam) {window.open(winnam,"popup3","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,close=yes,width=425,height=479");return false;
}