function domSwap(imageID, imageURL){
theImg=document.getElementById(imageID);
theImg.setAttribute("src",imageURL);
}

function domSwapBack(imageID, imageURL){
theImg=document.getElementById(imageID);
theImg.setAttribute("src",imageURL);
}

function formButtonFever(formName,action){
	var myString = "document."+formName+"."+action+"();";
	eval(myString);
}