/*Images */
function popuplrg(path,selection,originalname,width,height)
{
	PreView = window.open("", "Preview", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,copyhistory=0,width=480,height=480");
	PreView.document.open();
	PreView.document.write("<HTML><HEAD>");
	PreView.document.write("<TITLE>Enlarge Image</TITLE>");
	PreView.document.write("<link REL=StyleSheet HREF='includes/style.css' TYPE='text/css'>");
	PreView.document.write("</HEAD><BODY bgcolor='#FFFFFF'>");
	PreView.document.write("<BR><DIV>");
	PreView.document.write("<IMG alt='Brewfitt Direct' border='0' " + "src='"+ path + selection + originalname +"'>");	
	PreView.document.write("<BR><BR><FORM><INPUT type='button' value='Close' " + "onClick='window.close()'></FORM>");
	PreView.document.write("</DIV>");
	PreView.document.write("</BODY></HTML>");
	PreView.document.close();
}


