function openEmailLinkWindow(theLink,thePage)	{
	jsLink = theLink
	
	jsName = thePage
	jsFeatures = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=258,height=295,left=30,top=30"
	remote = window.open(jsLink, jsName, jsFeatures)
	if (remote.opener == null) remote.opener = window; 
    	remote.opener.name = "opener";
}

function openPrintWindow(theLink)	{
	jsLink = theLink
	jsName = "ExtendedText"
	jsFeatures = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=650,height=650,left=30,top=30"
	remote = window.open(jsLink, jsName, jsFeatures)
	if (remote.opener == null) remote.opener = window; 
    	remote.opener.name = "opener";
}

function MoreInfo(theLink)	{
	jsLink = theLink
	jsName = "ExtendedText"
	jsFeatures = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=260,height=630,left=30,top=30"
	remote = window.open(jsLink, jsName, jsFeatures)
	if (remote.opener == null) remote.opener = window; 
    	remote.opener.name = "opener";
}
	
