	function aWindow(url,title,width,height,alt) {
		newwindow=window.open('','','height='+height+',width='+width+',status=no,scrollbars=no, resize=no, menu=no');
		var tmp = newwindow.document;
		tmp.write('<html><head><title>'+title+'</title>');
		tmp.write('</head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
		tmp.write('<img src=\"'+url+'\" width=\"'+width+'\" height=\"'+height+'\" alt=\"'+alt+'\" border=\"0\"/>');
		tmp.write('</a></body></html>');
		tmp.close();
		if (window.focus) {newwindow.focus()};
	}