function imageView(imgFile,imgTitle,imgWidth,imgHeight,winPosX,winPosY)
{
	winWidth=imgWidth+20;
	winHeight=imgHeight+60;
	
	settings="resizable=yes,width="+winWidth+",height="+winHeight+",left="+winPosX+",top="+winPosY;
	preview = window.open("","mywindow",settings);
	preview.document.open("text/html", "replace");
	preview.document.write('<html><head><title>'+imgTitle+'<\/title><\/head>'
	+'<body>'
	+'<center>'
	+'<img border="0" alt="'+imgTitle+'" src="'+imgFile+'" width="'+imgWidth+'" height="'+imgHeight+'" \/>'
	+'<br \/><br \/>'
	+'<button onclick="window.close();">Close window<\/button>'
	+'<\/center>'
	+'<\/body>'
	+'<\/html>');
	preview.document.close();
}
