// Routine to email this page to a friend
var WindowEmailFriend;
function onEmailPage(ThePageAddress, ThePageName)
	{
	ThePageAddress = document.URL;
	ThePageName= document.title ;
	var TheEmailFriendFile = "/Global/EmailFriend/EmailFriend.asp?FieldPageAddress=" + ThePageAddress + "&FieldPageName=" + ThePageName;
	if (WindowEmailFriend && !WindowEmailFriend.closed)
		WindowEmailFriend.location = TheEmailFriendFile;
	else
		WindowEmailFriend = window.open(TheEmailFriendFile,"GOLEmailFriend","width=600,height=500");
	WindowEmailFriend.focus();
	}
