// JavaScript Document

function ShowImage(obj)
{
	var imgsrc = obj.src.replace('thumbImage','');
	var temp = imgsrc.substring(0,imgsrc.lastIndexOf('/'));
	imgsrc = temp + imgsrc.substring(imgsrc.lastIndexOf('/') + 1,imgsrc.length);
	var picname = obj.alt;
    //alert(imgsrc);
	OpenWindow=window.open("", "", "height=600, width=800,toolbar=no ,scrollbars=yes,menubar=no");   
　　OpenWindow.document.write("<HTML>");
　　OpenWindow.document.write("<TITLE>為寒社醤</TITLE>"); 
　　OpenWindow.document.write("<BODY BGCOLOR=#ffffff style='background-image:url(../image/website/bg.jpg); background-repeat:repeat;'>");
  　//OpenWindow.document.write("!");
　　OpenWindow.document.write("<FORM><DIV style='text-align:center'> ");
    OpenWindow.document.write("<IMG SRC='"+ imgsrc +"' ALT='' /><br/><br/>");
	OpenWindow.document.write("<h2>"+ picname +"</h2><br/><br/><br/>");
　　OpenWindow.document.write("<INPUT TYPE='BUTTON' VALUE='購液' onClick='window.close();'>"); 
　　OpenWindow.document.write("</DIV></FORM>");
　　OpenWindow.document.write("</BODY>");
　　OpenWindow.document.write("</HTML>");
　　OpenWindow.document.close();
}