// Java Document
function popup(url,w,h)
{
	popup_window = window.open(url,null,"location=0,status=0,scrollbars=0,width="+w+",height="+h);
	popup_window.moveTo(0,0);
}
function printWindow()
{
	browserVersion = parseInt(navigator.appVersion)
	if (browserVersion >= 4)
		window.print();
}
function autoResizeIFrame()
{
	//find the height of the internal page
	var the_height=document.getElementById('myiFrame').contentWindow.document.body.scrollHeight;
	//change the height of the iframe
	document.getElementById('myiFrame').height=the_height;
}