/*

   The Canada Connection

	Description:
   Define new browser window and show contents of parsed URL.
   Ensure the window is resizeable and has scrollbars for user convenience.

	Parameters:
	url        URL of document to render
	
*/

function newwindow(url)
	{
		mywindow = window.open(url,"TCC","'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=525,height=545'");
	}
