function fancyWindow(sender)
{
	var windowCaption = sender.innerText;
	if (!windowCaption)
	{
		windowCaption = sender.textContent;
	}
	var theHeight = document.documentElement.clientHeight * 0.95;
	win = new Window({className: "darkX", title: windowCaption, width:800, height:theHeight, destroyOnClose: true, zIndex: 100, recenterAuto:false}); 
	win.getContent().update("<iframe src='" + sender.href + "' class='frmFancy'></iframe>"); 
	win.showCenter();
//alert($(document.body).GetHeight());
	return false;
}

/* For compatibility with old site (and easy data entry). */
function openPictWindow(url, widthPx, heightPx)
{
	win = new Window({className: "darkX", width: widthPx, height: heightPx, destroyOnClose: true, zIndex: 100, recenterAuto:false}); 
	win.getContent().update("<iframe src='http://www.arkel-od.com/" + url + "' class='frmFancy'></iframe>"); 
	win.showCenter();	
}

function printHow()
{
	window.print();
}
