// JavaScript Document
//document.onload = standardLoad;
function standardLoad() {
	checkLinks();
}

function checkLinks() {
	aelements = document.getElementsByTagName("a");
	for (i=0; i<aelements.length; i++) {
		anode = aelements.item(i);
		h = anode.getAttribute("href");
		t = anode.getAttribute("rel");
		if (t=='external') {
			anode.target = '_blank';
			anode.style.padding='0px 18px 0px 0px';
			anode.style.background="url(images/externalsite.gif) right no-repeat";
		}
		else if (h!=null) {
			if (h.substring(h.length-3)=='pdf') {
				anode.style.padding='0px 18px 0px 0px';
				anode.style.background="url(images/pdf.gif) right no-repeat";
			} else if (h.substring(h.length-3)=='doc') {
				anode.style.padding='0px 18px 0px 0px';
				anode.style.background="url(images/doc.gif) right no-repeat";
			} else if (h.substring(h.length-3)=='xls') {
				anode.style.padding='0px 18px 0px 0px';
				anode.style.background="url(images/xls.gif) right no-repeat";
			}
		}
		
	}
}

function showHouse(id) {
	housewin = window.open('housestaff.php?h='+id,'housewin','width=510,height=600,toolbar=0,status=1,menubar=1,location=1,resizable=0,scrollbars=1');
	return false;
}
function writeEmail(s,end) {
	emailwin = window.open('writeemail.php?s='+s+'&end='+end,'emailwin','width=510,height=600,toolbar=0,status=1,menubar=1,location=1,resizable=0,scrollbars=1');
	return false;	
}
function showSignageForm() {
	signagewin = window.open('http://mcrcweb.org/file/Signage_in_Residence_Approval_Form.pdf','signagewin','');
}
