
function popUp(url,w,h,scroll,resize) {
	if (scroll == undefined) {
		scroll = 0;
	}
	if (resize == undefined) {
		resize = 0;
	}
	
	sat = window.open( url,"sat",'width='+w+',height='+h+',scrollbars='+scroll+',resizable='+resize);
	sat.focus();
}

function showprint() {
	isprint=document.getElementById("print");
	if(!isprint){
		return;
	}
	document.getElementById("print").onclick=function () {
		window.print()
	}
}

window.onload=showprint;