function imgPopupWindow(title, src, imgWidth, imgHeight, margins)
{
	var settings = "width=" + imgWidth + ",height=" + (imgHeight + 40) + ",";
	var imgWindow = window.open("", "", settings);
	imgWindow.document.open();
	imgWindow.document.write(
   "<html>"+
   "<head>"+
   "<title>" + (title == "" ? "Telonics, Inc. - Product Image" : title) + "</title>"+
   "<link rel='stylesheet' href='/telstyle.css' type='text/css'>"+
   "</head>"+
   "<body scroll='no' topmargin='" + margins + "' leftmargin='" + margins + "' rightmargin='" + margins + 
   "' bottomargin='" + margins + "' marginheight='" + margins + "' marginwidth='" + margins + "'>"+
   "<div style='position: absolute; top:0px;left:0px'>"+
   "<a href='javascript:window.close()'>"+
   "<img src='" + src + "' width='" + imgWidth + "' height='" + imgHeight + "' border='0'>"+
   "<p align='center'>Close Window</p>"+
   "</a>"+
   "</div></body></html>");
	imgWindow.document.close();
}
