function PrintPage(url){
var ex = window.location.href;
if (ex.indexOf('?')>-1){
	window.open(ex+"&typeP=1", "print", 'height=600,width=800,resizable=yes,scrollbars=yes,status=yes');
} else {
	window.open(ex+"?typeP=1", "print", 'height=600,width=800,resizable=yes,scrollbars=yes,status=yes');
}
//window.print();
}
