// JavaScript source code
//' Pops up a new window at the upper left of screen
function popIt(page, widthVal, heightVal){ 
    var newWnd = window.open( page, 'popupWindow', 'status,resizable,scrollbars,width=' + widthVal + ',height=' + heightVal + ',left=' + screen.availLeft + ',top=' + screen.availTop + '', true ); 
    newWnd.focus(); 
}  

//changes location to passed url
function Redirect(strUrl){
	window.location.href=strUrl;
}

// used in navigation for image rollovers
function Swap(strSection,strOnOff){
	var img = document.getElementById(strSection);
	img.src = "/img/" + strSection + "_" + strOnOff + ".gif";
}
