function Pic(Width,Height,Path,Name) {
	WinFeatures = "top=100,left=100,width="+Width+",height="+Height+",Status=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no";
	BigW = window.open("","",WinFeatures);
	BigW.document.open();
	BigW.document.write("<head><title>"+Name+"</title></head>");
	BigW.document.write("<body bgcolor='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><IMG  onmousedown='javascript:window.close();' src='"+Path+"' height='"+Height+"' width='"+Width+"' alt='"+Name+"'></body>");
	BigW.document.close();
}
