function makePopupWindow(file,title) {
		//var imgPath2 = "\"" + imgPath + "\"";
		var theResult ="<% option explicit %><!-- #include virtual='/common/config/inc_australia2.asp' -->";
		theResult += "<HTML><HEAD><TITLE>"+title+"</TITLE><link href='/common/css/anz2.css' rel='stylesheet' type='text/css'></HEAD>\r";
		theResult += "<BODY BGCOLOR=\'#FFFFFF\' onBlur=\"window.close();\">\r";
    	theResult += "<!--#include virtual='/common/header/inc_headerPopup.asp'-->\r";
		theResult += "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r<tr>\r<td valign=\"top\" width=\"100%\">\r";
		theResult += "<!--#include file='"+ file +"'-->\r";
		theResult += "</td>\r			</tr>\r		</table>\r";
		theResult +=  "<!--#include virtual='/common/footer/inc_footerPopup.asp'-->";
		theResult += "</BODY>\r</HTML>";
		var features = "\'toolbar=no; location=no; menubar=no; status=no; scrollbars=yes; resizable=yes; directories=no; top=100; left=100";
		features += "; width=400; height=300\'";
		var illustWindow = window.open("", title, features);
		illustWindow.document.open();
		illustWindow.document.write(theResult);
		illustWindow.document.close();
}