function OpenPrint(url,name,w,h) {
	var name = "print";
	var w = 500;
	var h = 650;
	LeftPosition = (screen.width) ? (screen.width- w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height- h)/2 : 0;

    var popup2 = window.open(url,name,"scrollbars=yes,width="+w+",height="+h+",menubar=no,toolbar=no,top="+TopPosition+",left="+LeftPosition+",location=no,directories=no,resizable=no");

	if (popup2.focus) { popup2.focus(); }
}

function tmt_winPrint(id){ 
	if(window.print()){
	var d=eval(id)==null||eval(id+".closed");
	if(!d){eval(id+".print()");}}
}


