// Load section specific rollover images

preloader("galleryprevious","/_global/images/gallery/button_previous.gif","/_global/images/gallery/button_previous_over.gif");
preloader("gallerylarge","/_global/images/gallery/button_large.gif","/_global/images/gallery/button_large_over.gif");
preloader("gallerysmall","/_global/images/gallery/button_small.gif","/_global/images/gallery/button_small_over.gif");
preloader("gallerynext","/_global/images/gallery/button_next.gif","/_global/images/gallery/button_next_over.gif");
preloader("galleryclose","/_global/images/gallery/button_close.gif","/_global/images/gallery/button_close_over.gif");


function openScreenWin(winName, loc, size){					// Opens a new window
	var newWindow
	if (size == "large") {
		width = "800";
		height = "600";
	}
	else { //small
		width = "390";
		height = "345";
	}

	newWindow = window.open(loc,winName,"location=no,status=no,scrollbars=no,toolbar=no,menubar=no,directories=no,resizable=no,width="+width+",height="+height);		
	newWindow.focus();
}

function loadURL(path) {
	if (path != "") {
    	//top.location.href = path;
		window.open(path,"_blank");
	}
}
