		
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;
}
