var FloorImgID = 'mapImg';
var FloorImgSrc = '/ActavisV2usa/i/Gallery/world_map.png';

function setFloorImg (o,theImageSRC) {
	if(document.getElementById) {
		var theImage = document.getElementById(FloorImgID);
		theImage.src = theImageSRC;
	}
}

function restoreImg() {
	if(document.getElementById) {
		var theImage = document.getElementById(FloorImgID);
		theImage.src = FloorImgSrc;
	}
}