

path = 'images/gif/'
var p = '"';


function loadImages(imgArray){
for(i=0; i<imgArray.length; i++){
	eval(imgArray[i]+' = new Image()');
	eval(imgArray[i]+'.src = '+p+path+'tnav_'+imgArray[i]+'.gif'+p);

	
	}

}


function imgOver(img, imgOver){
document.images[img].src=eval(imgOver+'.src');
}

function openPop(name,URL, WIDTH, HEIGHT) {
winProps = "height="+HEIGHT+",width="+WIDTH+",alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=no,scrollbars=no,status=0,titlebar=0,toolbar=0,z-lock=0,screenX=0,screeny=0,left=30,top=40"
winPop = window.open(URL, name, winProps);
winPop.focus();
}
