//Swap Images On Home Page
	function swap_images(imgname, status){
		document.images[imgname].src="images/interface/"+imgname+status+".gif";
	}
	
function checkA(idA, idB) {
	if(document.getElementById) {
		
		theSelect = document.getElementById(idA);
		thediv = document.getElementById(idB);
		
		if (theSelect.options[theSelect.selectedIndex].value == "Other") {
			thediv.style.display = "block";
		}else{
			thediv.style.display = "none";
		}
	}
}

function winBRopen(theURL, Name, popW, popH, scroll) { // V 1.0
var winleft = (screen.width - popW) / 2;
var winUp = (screen.height - popH) / 2;
winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',resizable=no'
Win = window.open(theURL, Name, winProp)
if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }

}


