var imageOn = new Image();
var imageOff = new Image();
imageOn = "../images/helpInfo_on.gif";
imageOff = "../images/helpInfo_off.gif";
function helpPopUp(url){
	var theURL = "../jsps/application/"+url;
	window.open(theURL,'popUp','width=500,height=350');
}
function imageHover(id,state){
 var image = document.getElementById(id);
 if (state == "on"){
 	image.src = imageOn; 
	}
 if (state == "off"){
 	image.src = imageOff;
	}
}
