
<!--
function showImg(file, descr, wWidth,wHeight) {
		var previewWin = window.open("","preview","width=" + wWidth + ", height=" + wHeight + ", location=no,menubar=no,status=no,toolbar=no,resizable=no, scrollbars=no");
	previewWin.document.open();
	previewWin.document.writeln("<html>");
	previewWin.document.writeln("<head>");
	previewWin.document.writeln("  <title> "  +descr + "</title>");
	previewWin.document.writeln("  <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-7'>");
	previewWin.document.writeln("</head>");
	previewWin.document.writeln("<body bgcolor='#CCCC99' onResize='window.resizeTo(" + wWidth +" ," +wHeight + ")' >");
	previewWin.document.writeln("<table width=100% border=0 cellpadding=0 cellspacing=3>");
	previewWin.document.writeln("<tr align=center>")
	previewWin.document.writeln("  <td><img src='imgs/" + file + "', border=1 ></td>");
	previewWin.document.writeln("</tr>");
	previewWin.document.writeln("<tr align=center>")
	previewWin.document.writeln("  <td><a href='javascript: window.close()' ><img src='../../imgs/winClose.gif', border=0></a></td>");
	previewWin.document.writeln("</tr>");
	previewWin.document.writeln("</table>");
	previewWin.document.writeln("</body>");
	previewWin.document.writeln("</html>");
	previewWin.document.close();

}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//-->
