// JavaScript Document// Example:// simplePreload( '01.gif', '02.gif' ); function simplePreload(){   var args = simplePreload.arguments;  document.imageArray = new Array(args.length);  for(var i=0; i<args.length; i++)  {    document.imageArray[i] = new Image;    document.imageArray[i].src = args[i];  }}// popup window functionsvar newWindow=null;function popWin(url,w,h) {	if(!newWindow || newWindow.closed) {		w = w+10;		h = h+10;		newWindow = window.open(url,'imgLgPop','width='+w+',height='+h+',left=0,top=0,scrollbars=no,resizable=no,status=no,location=no,menubar=no,locationbar=no,personalbar=no,toolbar=no');	} else {		newWindow.document.location = url;		newWindow.resizeTo(w,h);		newWindow.focus();	}}
