/* FANSITES FUNCTIONS */

/* prev next rollovers */
if (document.images) {   
		n1On = new Image(50,10);
		n1On.src = "/sgallery/prevon.gif";
		n1Off = new Image(50,10);
		n1Off.src = "/sgallery/prevoff.gif";

		n2On = new Image(50,10);
		n2On.src = "/sgallery/nexton.gif";
		n2Off = new Image(50,10);
		n2Off.src = "/sgallery/nextoff.gif";

}

function switchOn(imgName) {
    if (document.images) { 
        imgOn = eval(imgName + "On.src");
        document [imgName].src = imgOn;
        }
}

function switchOff(imgName) {
   if (document.images) { 
        imgOff = eval(imgName + "Off.src");
        document [imgName].src = imgOff;
        }
}

/* pup-up zooms window */
// a href="#" onClick="moreInfo('url.html','ZoomWindow');" - link - close anchor
function allZooms(URL,WindowName) {
	window.open(URL,WindowName,"width=516,height=525,status=0,toolbar=0,menubar=0,location=0,scrollbars=1,resizable=0");
}

/* END FANSITES FUNCTIONS */
