function detectBrowser(){
	ua=navigator.userAgent;
	
	l='<LINK rel="stylesheet" type="text/css" href="/include/';
	
	if (ua.indexOf('IE 3.0')!=-1){
	    if (((ua.indexOf('IE 3.0A')!=-1) || (ua.indexOf('IE 3.0 ')!=-1)) && (ua.indexOf('Mac')==-1)) 
			document.write(l+'style.css">');
	    else 
			document.write(l+'ie_mac.css">');
	}

	if (ua.indexOf('Mac')!=-1) {
	   document.write(l+'ie_mac.css">');
	} 
}


function callPhoto(sPhoto) {
	var sLink;
	sLink = "/photos/photoL.asp?p=" + sPhoto ;
    window.open(sLink,'popup','top=10,left=10,height=500,width=600,toolbar=no,menubar=no,status=no,resizable=0,scrollbars=Yes');
	}

