var imageWindow;

function showImage(imagename, width, height, title){

	if(imageWindow)
		imageWindow.close()

	imageWindow = window.open("","imagewindow"," HEIGHT="+height+",WIDTH="+width+",LEFT="+(window.screenLeft+((document.body.clientWidth-width)/2))+",TOP="+(window.screenTop+((document.body.clientHeight-height)/2))+",dependent=yes,titlebar=no,menubar=no,scrollbars=no,statusbar=no,location=no")

	imageWindow.document.write("<html><head><title>"+title+" </title></head>")
	imageWindow.document.write("<body STYLE='margin-left: 4; margin-right :0; margin-top: 4; margin-bottom: 0;'>")
	//imageWindow.document.write("<center>")
	imageWindow.document.write("<table border=0 width=100% height=100% cellpadding=0 cellspacing=0>")
	//imageWindow.document.write("<tr><td align='center' valign='middle'>")
	imageWindow.document.write("<tr><td align='left' valign='top'>")
	imageWindow.document.write("<img border=0 src='./images/"+imagename+"'>")
	imageWindow.document.write("</td></tr></table>")
	//imageWindow.document.write("</center>")
	imageWindow.document.write("</body>")
	imageWindow.document.write("</html>")

}

