// 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=3,resizable=0,copyhistory=0,width="+w+",height="+h);
    }


// end hiding contents from old browsers  -->

/*preload image*/
data = new Array("../img/global01.jpg","../img/global02.jpg","../img/global03.jpg","../img/global04.jpg","../img/global05.jpg","../img/global01on.jpg","../img/global02on.jpg","../img/global03on.jpg","../img/global04on.jpg","../img/global05on.jpg","img/t_global01.jpg","img/t_global02.jpg","img/t_global03.jpg","img/t_global04.jpg","img/t_global05.jpg","img/t_global01on.jpg","img/t_global02on.jpg","img/t_global03on.jpg","img/t_global04on.jpg","img/t_global05on.jpg","img/top_contents01_on.gif","top_contents02_on.gif","top_contents03_on.gif","top_contents04_on.gif");
preload= new Array();
for (i=0; i<data.length; i++)
{
	preload[i] = new Image();
	preload[i].src = data[i];
}

