function photoswitch(status, nID, bActive){	if(bActive)	{		//Prepare the IDs		oPhoto = new Image;				sPhotoID = 'photo' + nID;				//Get the Elements		oImgElement = document.getElementById(sPhotoID);				if (status == 'OFF')		{			oPhoto.src = "./images/menu_" + nID + "_bw.jpg";			}		else		{			oPhoto.src = "./images/menu_" + nID + "_color.jpg";		}				oImgElement.src = oPhoto.src;	}}		function PopImgPage(sImgName){		var sURL = "timelinepic.php?IMG=" + sImgName; 	var oWindow = window.open(sURL, "timelinepic", "status=no, resizable=no, toolbar=yes");}function PopSecondaryPage(strURL){	var sURL = "popframe.php?URL=" + strURL;	var oWindow =  window.open(sURL, "timelinepic", "status=yes, resizable=yes, toolbar=yes");	oWindow.focus();}// 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];  }}