	function swap(divName,imgName,flop) {		if (loader == 1) {			if (flop==0) {				if(document.layers && divName) {					document[divName].document[imgName].src = eval(imgName + ".src");				}				else {					document.images[imgName].src = eval(imgName + ".src");				}		   } else {		   		if(document.layers && divName) {				document[divName].document[imgName].src = eval(imgName + "_over.src");				} else {					document.images[imgName].src = eval(imgName + "_over.src");				}		   }		}	}		function popOpen(Limage,dim) {		var large = open('',large,'status=0,resizable=1,width=770,height='+dim+',toolbar=0,menubar=0,location=0');		large.document.open();		large.document.write('<html><head><title>Large Image</title></head><body bgcolor=\"\#000000\"><center><img src=\"images/large/' + Limage + '.jpg\"></center></body></html>');		large.document.close();	}	function imageOpen(iset,iwidth,iheight) {		var large = open(iset+'.html',large,'status=0,resizable=1,width='+iwidth+',height='+iheight+',toolbar=0,menubar=0,location=0, scrollbars=1');	}	function view(objLink,imgName) {		var objImage = document.images['largeHold'];		//var objTitle = document.getElementById('imageTitle');		var objShow = document.getElementById('largeImg');		var objLoad = document.getElementById('divLoadImage');		imgPreload = new Image();		imgPreload.onload=function(){				objImage.style.border = '1px solid #CCC';				//objTitle.innerHTML = document.images[imgName + 'Img'].alt;				//objTitle.style.width = imgPreload.width +"px";				objImage.src = objLink.href;				objImage.style.width = imgPreload.width +"px";				objImage.style.height = imgPreload.height +"px";				if (navigator.appVersion.indexOf("MSIE")!=-1){					pause(250);				}				objLoad.style.visibility = "hidden";				objShow.style.visibility = "visible";			return false;		}		objShow.style.visibility = "hidden";		objLoad.style.visibility = "visible";		imgPreload.src = objLink.href;	}	function pause(numberMillis) {	var now = new Date();	var exitTime = now.getTime() + numberMillis;	while (true) {		now = new Date();		if (now.getTime() > exitTime)			return;	}}