
//画像ウインドウ600×580

function picwindow(src){
     options="resizable=no,menubsr=no,status=no,toolbar=no,width=600,height=580";
       w=window.open("","newWindow",options);
	   w.document.write("<html><body><center>");
	   w.document.write("<img src="+ src + ">");
	   w.document.write("<br><br><input type='button' value='CLOSE' onclick='window.close()'>");
	   w.document.write("</center></body></html>");
	   w.document.close();
 }
