
function wPrint(url) 
{
	var leftPos = (screen.width - 700)/2;
	var topPos = (screen.height - 575)/2;
	var win = window.open(url, "paashaas", "fullscreen = no, height = 450, toolbar = no, addresbar = no, resizable = no, width=600, screenX=0, left = " + leftPos + ", top = " + topPos);
	win.setTimeout("if (window) window.print()", 1000);
	win.setTimeout("if (self) self.close()", 3000);
}
