function maxpic(picname,x,y,winx,winy,idname,_dir) {
	var win = window.open('','bigpic',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+winx+",height="+winy);
	win.document.open("text/html");
	with (win.document) {
		write("<html><head><title>"+idname+"</title><script language='JavaScript'>self.focus()</script></head><body bgcolor='#FFFFFF' leftmargin=0 topmargin=0 marginheight=0 marginwidth=0><a href='#' onclick='window.close()'><img src='"+_dir+"/"+picname+"'");
		if(x>0 && y>0) write(" width="+x+" height="+y);
		write(" alt='close window' border='0'></a></body></html>");
		close();
	}
}
