var htmlArray = new Array();
htmlArray.push('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=shift_jis" />');
htmlArray.push('<style type="text/css">body{margin:0;padding:0;}img{border:none;}</style></head><body><div id="container">');
htmlArray.push('</div></body></html>');

function imgPopup(imgPath, title, width, height) {
	var newWindow = window.open(null, "img", "width="+width+", height="+height+", status=no,resizeble=yes");
	newWindow.document.write(htmlArray[0]);
	newWindow.document.write('<title>' + title + '</title>');
	newWindow.document.write(htmlArray[1]);
	newWindow.document.write('<a href="#" onClick="window.close();return false;"><img src="' + imgPath + '" alt="" /></a>');
	newWindow.document.write(htmlArray[2]);
	newWindow.document.close();
}
