function GetEmail()
{
    return ("<A href='mailto:webmaster@bcrrs.ca'>Jeff Perron, Henry Young</a>");
}

function ScrollIt()
{
	window.scrollTo(document.Form1.PageX.value, document.Form1.PageY.value);
}

function setcoords()
{
	var myPageX;
	var myPageY;
	if (document.all)
	{
		if (!document.documentElement.scrollLeft)
			myPageX = document.body.scrollLeft;
		else
			myPageX = document.documentElement.scrollLeft;
	              
		if (!document.documentElement.scrollTop)
			myPageY = document.body.scrollTop;
		else
			myPageY = document.documentElement.scrollTop;
	}
	else
	{
		myPageX = window.pageXOffset;
		myPageY = window.pageYOffset;
	}
	document.Form1.PageX.value = myPageX;
	document.Form1.PageY.value = myPageY;
}
