		
function putImage(imgDocID,imgObjName) {
	//   imgDocID - the name or number of the document image to be replaced
	//   imgObjName - the name of the image object to be swapped in
	if (browser) {
	        document.images[imgDocID].src = eval(imgObjName + ".src")
	}
}
	
function CSURLPopupShow(formName, popupName, target) {
	var popup = document[formName].elements[popupName];
	 window.open(popup.options[popup.selectedIndex].value, target);
	//popup.selectedIndex = 0;
}

function searchBoxHelp(formName, e) {
	/*receives form name and search element reference, if the value of this
	   element is regexp storyserver, then changes the value to something we know
	   that will find the faq that they are looking for
	*/
	re = new RegExp;
	re.compile("storyserver", "i");
	var ss = document[formName].elements[e].value;
	searchString = new String(ss);
	caught = searchString.match(re);
	if (caught) {
		// here we should change the form value to what we know is good
		document[formName].elements[e].value = "frequently asked questions";
	}
	return;
}