// determine browser type

var myBrowser; 
var mySystem = navigator.appVersion;

if (mySystem.indexOf("Macintosh") == "-1") {
	myBrowser='NET';
} else {
	if (navigator.appName == "Microsoft Internet Explorer") {
		myBrowser='MSIE';
	} else {
		myBrowser='NET';
	} 
}

function openWin(url, name, w, h, feat) {
	if (myBrowser=="MSIE") {
		h -= 16;
		w -= 16;
	}
	var left = (screen.width-w)/2;
	var top = (screen.height-h)/2;
	var settings = 'height='+h+',width='+w+',top='+top+',left='+left+','+feat;
	var tw = window.open(url,name,settings);
	tw.focus;	
}

function downloadPic(nn,ww,hh) {
	ww *= 2;
	hh *= 2;
	openWin("download/fotos/"+nn+".jpg", "dlc", ww, hh, "toolbar=no, address=no, status=no, resizable=yes, scrollbars=auto");
}

function downloadPressPic(nn,ww,hh) {
	openWin("download/presse/"+nn+".jpg", "dlc", ww, hh, "toolbar=no, address=no, status=no, resizable=yes, scrollbars=auto");
}

function dlDeluxe() {
	openWin("download/presse/suessdeluxe.pdf", "dl", 900, 700, "toolbar=no, address=no, status=no, resizable=yes, scrollbars=no");
}

function openImpressum() {
	openWin("impressum.html", "ext", 800, 600, "toolbar=no, address=no, status=yes, resizable=yes, scrollbars=auto");
}

function openDiary() {
	openWin("http://birgitsuess.blogspot.com", "ext", 900, 700, "toolbar=no, address=no, status=yes, resizable=yes, scrollbars=yes");
}

function openDates() {
	openWin("dates.html", "ext", 720, 600, "toolbar=no, address=no, status=yes, resizable=yes, scrollbars=yes");
}

function openTube() {
	openWin("http://www.youtube.com/niea2008", "ext", 950, 600, "toolbar=yes, address=yes, status=yes, resizable=yes, scrollbars=yes");
}

function openAcro() {
	openWin("http://www.adobe.com/go/DE-H-M-A1", "ext", 900, 700, "toolbar=yes, address=yes, status=yes, resizable=yes, scrollbars=yes");
}
