// JavaScript Document

function OpenWindow(FileName,ww,wh) {
	window.open(FileName,"_blank","left=0,top=0,screenX=0,screenY=0,width=" + ww + ",height=" + wh + ",scrollbars,resizable")
}
var pwin;
function OpenWindow1(imgName){
	pwin = window.open("","_blank","width=370,height=530,left=0,top=0,screenX=0,screenY=0,resizable");
	pwin.document.open();
	pwin.document.write(
		"<head>",
		"<meta http-equiv='Content-Type' content='text/html; charset=Shift_JIS'>",
		"<meta http-equiv='Content-Script-Type' content='text/javascript'>",
		"<title>//NoStyle//デザインオフィス<\/title>",
		"<style type='text/css'>",
		"<!--",
		"BODY {background-color : #ffffff;}",
		"-->",
		"<\/style>",
		"<\/head>",
		"<body><center>",
		"<img width='350' height='496' src=" + imgName + ">",
		"<\/center><\/body>"
	);
	pwin.document.close();
	pwin.focus();
} 

function OpenWindow2(imgName){
	pwin = window.open("","_blank","width=530,height=370,left=0,top=0,screenX=0,screenY=0,resizable");
	pwin.document.open();
	pwin.document.write(
		"<head>",
		"<meta http-equiv='Content-Type' content='text/html; charset=Shift_JIS'>",
		"<meta http-equiv='Content-Script-Type' content='text/javascript'>",
		"<title>//NoStyle//デザインオフィス<\/title>",
		"<style type='text/css'>",
		"<!--",
		"BODY {background-color : #ffffff;}",
		"-->",
		"<\/style>",
		"<\/head>",
		"<body><center>",
		"<img width='496' height='350' src=" + imgName + ">",
		"<\/center><\/body>"
	);
	pwin.document.close();
	pwin.focus();
} 

