function newWindow(nom)
	{       
	window.open(""+nom+".htm", "WindowName","scrollbars=no,width=250,height=334");
	}
	
	function ImageViewer(nom)
	{       
	window.open(""+nom+"", "WindowName","scrollbars=no,width=800,height=600");
	}

if (document.images) {

 img1on = new Image();           
	img1on.src = "/graphics/on/idx_ml.gif";
	img2on = new Image();           
	img2on.src = "/graphics/on/idx_os.gif";
                                                                           
 img1off = new Image();
 img1off.src = "/graphics/off/idx_ml.gif";
	img2off = new Image();
 img2off.src = "/graphics/off/idx_os.gif";
}

function imgOn(imgName) {
  if (document.images) {
    document[imgName].src = eval(imgName + "on.src");
  }
}
                                 
function imgOff(imgName) {
  if (document.images) {
    document[imgName].src = eval(imgName + "off.src");
  }
}




//New Window for the Terms and Conditions
function checklist(win)
	{       
	window.open(win, "WindowName","scrollbars=yes,toolbar=yes,width=500,height=600");
	}
	//----------------------------------------------------------------------------------------