//

function openWin1(theURL,ww,hh,winName,features) { //v2.0
theURL = "slideshow.html";
ww = 298;
hh = 199;
winName = "Popup";

	if (myBrowser=="MSIE") {
		hh -= 15;
		ww -= 14;
	}
	
	//	LeftPosition = (screen.width) ? (screen.width-ww)/2 : 0;
	//	TopPosition = (screen.height) ? (screen.height-hh)/2 : 0;
	
	LeftPosition = 60;
	TopPosition = 90;
	
	settings = 'height='+hh+',width='+ww+',top='+TopPosition+',left='+LeftPosition+','+features;
	window.open(theURL,winName,settings);
}

function openWin2(theURL,ww,hh,winName,features) { //v2.0
theURL = "film.html";
ww = 238;
hh = 179;
winName = "Popup";

	if (myBrowser=="MSIE") {
		hh -= 15;
		ww -= 14;
	}
	
	//	LeftPosition = (screen.width) ? (screen.width-ww)/2 : 0;
	//	TopPosition = (screen.height) ? (screen.height-hh)/2 : 0;
	
	LeftPosition = 60;
	TopPosition = 90;
	
	settings = 'height='+hh+',width='+ww+',top='+TopPosition+',left='+LeftPosition+','+features;
	window.open(theURL,winName,settings);
}


// BROWSERCHECK

var myBrowser; 
var mySystem;

mySystem=navigator.appVersion 

if (mySystem.indexOf("Macintosh") =="-1") {

	myBrowser='NET'
	
} else {

	if (navigator.appName =="Microsoft Internet Explorer") {
	
		myBrowser='MSIE' 
		
	} else { 
	
		myBrowser='NET' 
	} 
}
