// JavaScript Document
function ItemDispAll(it1,it2,it3,w,h) {
  if (it1 != '')  {
	var newWindow = null;
	var mw = w*1 + 40; 
	var mh = h*1 +100;
	style = "width=" +mw+ ",height=" +mh+ " ,scrollbars=yes,resizable=yes,left=20,top=20,screenX=20,screenY=20";
		newWindow = window.open(it1,'win',style);
	if(newWindow != null) {
		var msg = "<HTML><HEAD><meta http-equiv='Content-Type' content='text/html; charset=shift_jis'>";
		msg += "<TITLE>Photo</TITLE>";
		msg +="<style type='text/css'><!-- body {margin-top: 5px;} div {margin-top: 10px;} --></style>";
		msg +="</HEAD>";
		msg += "<BODY  bgcolor='#ffffff'>";
		if (it1 != '') 	msg += "<DIV align='center'><img src='" + it1 + "' border=0></DIV>";
		if (it2 != '')msg += "<DIV align='center'><img src='" + it2 + "' border=0></DIV>";
		if (it3 != '')msg += "<DIV align='center'><img src='" + it3 + "' border=0></DIV>";
		msg += "<DIV align='center'><INPUT type='button' value='閉じる' onClick='self.close()'></DIV></BODY></HTML>";
		newWindow.document.write(msg);
		newWindow.document.close();
		newWindow.focus()
	}
  }  
}

function phMado(url) {
  if (url != '')  {
	var newWindow = null
	newWindow = window.open("","","width=750,height=600,resizable=yes")
	if(newWindow != null)	{
		var msg = "<HTML><HEAD><TITLE>Photo</TITLE></HEAD>"
		msg += "<BODY  bgcolor='#000000'><DIV align='center'><img src="
		msg += url
		msg += "><BR><BR><INPUT type='button' value='閉じる' onClick='self.close()'></DIV></BODY></HTML>"
		newWindow.document.write(msg)
		newWindow.document.close()
	}
  }
}
function phMado820(url) {
  if (url != '')  {
	var newWindow = null
	newWindow = window.open("","","width=850,height=600,resizable=yes")
	if(newWindow != null)	{
		var msg = "<HTML><HEAD><TITLE>Photo</TITLE></HEAD>"
		msg += "<BODY  bgcolor='#000000'><DIV align='center'><img src="
		msg += url
		msg += "><BR><BR><INPUT type='button' value='閉じる' onClick='self.close()'></DIV></BODY></HTML>"
		newWindow.document.write(msg)
		newWindow.document.close()
	}
  }
}
