// JavaScript Document

<!--to hide script contents from old browsers

/*change image*/
function swapimg(imgname,chg){
	document.images[imgname].src = chg;
}

/*pop up window*/
var e1;
    function html(w,h,html) {
 e1 = window.open(html,"e1_win","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width="+w+",height="+h);
    }

// end hiding contents from old browsers  -->

/*preload image*/
data = new Array("img/menu_t_01on.gif");
preload= new Array();
for (i=0; i<data.length; i++)
{
	preload[i] = new Image();
	preload[i].src = data[i];
}