

<!-- hide from JavaScript-challenged browsers

var isNetscape = false;
var isIE = false;
var isMac = false;
var isWindows = false;


	if (navigator.userAgent.indexOf("MSIE") != -1) {
	
	isIE = true;
	
	} else if (navigator.userAgent.indexOf("Gecko") != -1) {
	
	isNetscape = true;
	
	} else if (navigator.appName == "Netscape") {
	
	isNetscape = true;
	
	}

	if (navigator.userAgent.indexOf("Win") != -1) {
	
	isWindows = true;
	
	} else if (navigator.userAgent.indexOf("Mac") != -1) {
	
	isMac = true;
	
	}


function openWindow(url, x, y) { 

	if ((isNetscape) && ((isMac) || (isWindows))) {

		x += 31;
		y += 0;
	
	} 
	
	features = 'top=1,screeny=1,left=1,screenx=1, toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0';
	
	features += ',width=' + x + ',height=' + y;

	theURL = url;
	
	//nameStripped = imageName.split('.');
	
	winName = "slideshow";
	
	window.open(theURL,winName,features);

	}



// done hiding -->

