
function openWindow(url,x,y,screenX,screenY,top,left) {
mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=' + x + ',height=' + y + ',screenX=' + screenX + ',screenY=' + screenY + ',top=' + top + ',left=' + left);
}
function photos(url,x,y,screenX,screenY,top,left) {
mywin2 = window.open(url,"win2",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=' + x + ',height=' + y + ',screenX=' + screenX + ',screenY=' + screenY + ',top=' + top + ',left=' + left);
}

function printPage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature.");
}

if (document.images) {
arImageSrc = new Array (
//nav preload
//"../images/previousUp.gif",
//"../images/previousDwn.gif",
//"../images/printUp.gif",
//"../images/printDwn.gif",
//"../images/closeUp.gif",
//"../images/closeDwn.gif",
//"../images/nextUp.gif",
//"../images/nextDwn.gif"
)

arImageList = new Array ();

for (counter in arImageSrc) {
arImageList[counter] = new Image ();
arImageList [counter].src = arImageSrc [counter];
}
};

  function rollOver (imname,over) {
        if (!document.images) {return};
        if (over) { 
        document.images [imname].src = "../images/" + imname  + "Dwn.gif";
		}
        else 
        { 
        document.images [imname].src = "../images/" + imname  + "Up.gif";		
        }
}

  function rollOver2 (imname,over) {
        if (!document.images) {return};
        if (over) { 
        document.images [imname].src = "images/" + imname  + "Dwn.gif";
		}
        else 
        { 
        document.images [imname].src = "images/" + imname  + "Up.gif";		
        }
} 

