var imgwindow;

function imgopen( url )
{
	imgwindow = window.open( "" ,"_blank","directories=no, status=no, resizable=no, width=560, height=440, top=100, left=100");
	var imgh = "<img src='" + url + '.jpg' + "' >";
	var tmph = imgwindow.document;
	tmph.write( imgh );
	tmph.write('<html><head><title>kbase</title>');
	tmph.write('<style type="text/css">body { margin-left: 30px; margin-top: 30px; }</style>');
	tmph.write('</head><body></body></html>');
}
