function ShowPrintFrame(evt)
{
	if(!evt)
		evt = window.event;
	
	if(evt.altKey)
	{
	    var theFrame = document.getElementById('PrintIFrame');
		var theFrameStyle = theFrame.style;
		theFrameStyle.position = "relative";
		theFrameStyle.left = 0;
		theFrameStyle.top = 0;
		theFrameStyle.width="95%";
		theFrameStyle.height="400px"
	}
}

document.onload = new function() { document.ondblclick = ShowPrintFrame; }

