var the_imageoff = new Image();
var the_imageon = new Image();

function img_act(imgName){ 

	if (document.images){ 
	the_imageoff[imgName] = new Image();
	the_imageon[imgName] = new Image();
	the_imageoff[imgName].src = "images/r-" + imgName + ".gif"
	the_imageon[imgName].src = "images/r-" + imgName + "O.gif";
	
	document.images[imgName].src = the_imageon[imgName].src;
	}
}

function img_inact(imgName){ 

	if (document.images){ 
	the_imageoff[imgName] = new Image();
	the_imageon[imgName] = new Image();
	the_imageoff[imgName].src = "images/r-" + imgName + ".gif"
	the_imageon[imgName].src = "images/r-" + imgName + "O.gif";
	document.images[imgName].src = the_imageoff[imgName].src;
	}
}

function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function formHandler(form) {

	var URL = form.site.options[form.site.selectedIndex].value;
	if (URL != "")
		window.location=(URL);
}
