<!--
function preloadImage(imgName,imgTitle) {
	imgArt = new Image();
	imgArt.src = "images/"+imgTitle+"/"+imgName;
	newWindow=window.open(imgArt.src,'newWin','toolbar=no,status=no,width=64,height=64');
	newWindow.moveTo(0,0);
	newWindow.document.write('<html><head><title>'+imgTitle+'<\/title><\/head><body background="'+imgArt.src+'" onclick="self.close()"><\/body><\/html>');
   	cycleLoad();
}	
function cycleLoad(){
	if (imgArt.complete){
   		newWindow.resizeBy(imgArt.width-newWindow.document.body.clientWidth,imgArt.height-newWindow.document.body.clientHeight);
   		newWindow.focus();
   	} else {
   	setTimeout("cycleLoad()",250);
	}
}

//-->