// JavaScript Document
<!--
function OpenWin(theURL)
{
	window.open(theURL,'amorecanada','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resize=no,width=525,height=360');
}

function printPage(theID)
{
	var test = document.getElementById(theID);
	print(test);
}

function doResize(id){
	myheight = document.body.scrollHeight;
	mywidth = document.body.scrollWidth;

	//window.resizeTo(mywidth, myheight);
	parent.document.getElementById(id).height = myheight;
	parent.document.getElementById(id).width = mywidth;
}
//-->
