function SetBookmark(link){
	var is_4up = parseInt(navigator.appVersion);
	var is_mac   = navigator.userAgent.toLowerCase().indexOf("mac")!=-1;
	var is_ie   = navigator.userAgent.toLowerCase().indexOf("msie")!=-1;
	var thePage = location.href;
	if (thePage.lastIndexOf('#')!=-1)
		thePage = thePage.substring(0,thePage.lastIndexOf('#'));
	if (is_ie && is_4up && !is_mac) 
		window.external.AddFavorite("http://www.beerendoktor.de"+link);
	else if (is_ie || document.images)
		booker_hp = window.open("js/booker.htm",'booker_','width=325,height=150,left=140,top=60');
//thePage,
//booker_hp.focus();
}

function nochnicht(was){
 window.location.href='mailto:info@rocket-media.de';
}

function OpenPic(imageName,imageWidth,imageHeight,title,posLeft,posTop) {
 var docHeight=Number(imageHeight)+16;
 BigImage = window.open("","BigImage","width="+imageWidth+",height="+docHeight+",left="+posLeft+",top="+posTop);
 BigImage.document.open();
 BigImage.document.write('<html><head><title>'+title+'</title>');
 BigImage.document.write('<link rel=stylesheet type="text/css" href="./css/style.css">');
 BigImage.document.write('</head>');
 BigImage.document.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">'); 
 BigImage.document.write('<img src="'+imageName+'" width="'+imageWidth+'" height="'+imageHeight+'" alt="'+title+'">'); 
 BigImage.document.write('<br><div align="right"><a href="javascript:window.print();">Bild drucken</a> | <a href="javascript:window.close();">Fenster schliessen</a>&nbsp;</div>'); 
 BigImage.document.write('</body></html>');
 BigImage.document.close();
 BigImage.focus();
}

function OpenWin(target,width,height){     
 w=width;
 h=height;	 
 newx=20; 
 newy=100;	 
 newWindow=window.open(target,'Lexikon','width='+w+',height='+h+',left='+newx+',top='+newy+',scrollbars=yes,toolbar=no,menubar=no,resizable=yes"');
 window.newWindow.focus();
}