
function OnDescription( url, width, height )
{ 
	w = (width != null) ? width : 700;
	h = (height != null) ? height : 580;

	
	if (screen) {
		leftPos = screen.width/2-w/2
		topPos = screen.height/2-h/2
	}
	photoWin =  window.open( url, null, "width="+w+",height="+h+",top="+topPos+",left="+leftPos+",location=no,menubar=no,scrollbars=no,toolbar=no,resizable=yes", "true"); 
	photoWin.focus();
}

function OnStaticPrint(parameters)
{
	OnDescription("/Print/Print.aspx?Page=StaticPrint" + parameters + "&L=LT");
}


function OnNewsPrint(ID)
{
	OnDescription("/Print/Print.aspx?Page=NewsPrint&ID=" + ID);
	
}







