function open_window(url,ww,hh,tit)
{
			var NEW_WIN = null;
			var cont = "<html><head><title>"+tit+
			"</title></head><body topmargin="+0+" leftmargin="+0+
			" rightmargin=\"+0+\" bottommargin="+0+"><img src="+url+
			" width="+ww+" height="+hh+"></body></html>";
			NEW_WIN = window.open ("","",
			"toolbar=no,width="+ww+",height="+hh+",directories=no,status=no,scrollbars=no,resize=no,menubar=no");
			NEW_WIN.document.write(cont);
			NEW_WIN.document.close();
}

function doPrint() {

	window.print();

	return false;
}