
function emailFriend(page) {
   friendWindow = window.open('EmailPage.asp?a='+page, 'emailform', 'height=350,width=450')
   //friendWindow = window.open('NotAvailable.htm', 'emailform', 'height=350,width=450')
}

function viewDoc(docFile) {
   contactWindow = window.open('ContactInfo.asp?a='+docFile, 'contactform', 'height=400,width=750,resizable=yes')
   //contactWindow = window.open('docs/'+docFile, 'docPDF', 'height=600,width=800,resizable=yes')
}

function showMenu(ulid) {
	switch (ulid) {
			case "byIndustry":
				document.getElementById("byIndustry").style.display='block';
			break;
			case "byRegulation":
				document.getElementById("byRegulation").style.display='block';
			break;
			case "byStandard":
				document.getElementById("byStandard").style.display='block';
			break;
		}
	}
	
function hideMenu(ulid) {
	switch (ulid) {
			case "byIndustry":
				document.getElementById("byIndustry").style.display='none';
			break;
			case "byRegulation":
				document.getElementById("byRegulation").style.display='none';
			break;
			case "byStandard":
				document.getElementById("byStandard").style.display='none';
			break;
		}
	}
