// JavaScript Document

// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
if (document.images) {
//rollover images  
  back_to_index_btn = new Image();
  back_to_index_btn.src = "/policies/images/back_to_index_off.gif";
  back_to_index_btn2 = new Image();
  back_to_index_btn2.src = "/policies/images/back_to_index_on.gif";
  
}
function OnImage(name) {
	if (document.images) {
		fullname = eval(name + "2");
		document[name].src = fullname.src;
	}
}
function OffImage(name) {
  if (document.images) {
    fullname = eval(name);
	if (fullname.complete) {
      document[name].src = fullname.src;
	}
  }
}