var newWindow = null;
var img1 = "<img src='Jpeg/Takanosu01.jpg'>";
function openWindow(image)	{
	newWindow = window.open("","View","width=880,height=760");
	if(newWindow != null)	{
		var msg = "<html><head><title>sub window</title></head>";
		msg += "<body>";
		msg += "<form><input type='button' value='•Â‚¶‚é' onclick='self.close()'></form>";
                msg += "<img src=";
                msg += image;
                msg += ">";
 		msg += "</body></html>";
		newWindow.document.write(msg);
		newWindow.document.close();
	}
}
function closeWindow()	{
    if(newWindow != null){
       newWindow.close();
    }
}

function openWindowM(image)	{
	newWindow = window.open("","View","width=1024,height=860");
	if(newWindow != null)	{
		var msg = "<html><head><title>sub window</title></head>";
		msg += "<body>";
		msg += "<form><input type='button' value='•Â‚¶‚é' onclick='self.close()'></form>";
                msg += "<img src=";
                msg += image;
                msg += ">";
 		msg += "</body></html>";
		newWindow.document.write(msg);
		newWindow.document.close();
	}
}

