
function ShowPopUp(sUrl, sWidth, nHeight)
{
	window.open(sUrl, 'popup', 'width=' + nWidth + ',height=' + nHeight + ',scrollbars, resizable');
	
}

function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}



