	function swapImage(myId, mySrc, descId, descText,anchorID,anchorHref,anchorID,anchorrel){
		// myId = the ID of the image to be swapped
		// mySrc = path to the image to be swapped in
		// descId = ID of span that will have text swapped in
		// descText = text to swap in
		
		//anchorID == the link we're changing
		//anchorHref == Where we want it to go
		
		//anchorID == the link we're changing
		//anchorrel == the grouping we want it connected to
		
		document.getElementById(myId).src = mySrc;
		document.getElementById(descId).innerHTML = descText;
	}

	function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->