// Java Document
var status = 0;
function toggle() {

   if(status==0)
   {
      parent.musik.location='musikaus.html'
      status = 1;
   }
   else
   {
      parent.musik.location='musikein.html'
      status = 0;
   }
}

function fBildpopup(imageName,scroll,bildunterschrift) { 
if (fBildpopup.arguments.length>2){
  if (scroll == 'yes'){
    newWindow = window.open("","newWindow","width="+599+",height="+500+",scrollbars=yes");
  }else{
    newWindow = window.open("","newWindow","width="+599+",height="+500+",scrollbars=no,resizable=yes");
  }
}else{
  if (scroll == 'no'){
    newWindow = window.open("","newWindow","width="+599+",height="+500+",scrollbars=no resizable=no");
  }else{
    newWindow = window.open("","newWindow","width="+599+",height="+500+",scrollbars=yes,resizable=no");
  }
}

newWindow.document.open();
newWindow.document.writeln('<html><head><title>Hotel Zum Bräu</title>');
newWindow.document.writeln('<link rel=stylesheet type="text/css" href="css/main.css"></head>');
newWindow.document.writeln('<body topmargin="0" id="popup" marginheight="0" leftmargin="0" marginleft="0" onload="window.resizeTo(document.bild.width,document.bild.height+30);" onBlur="self.close()">');
newWindow.document.writeln('<p align="center"><a href="javascript:self.close()"><img src="'+imageName+'" name="bild" align="absmiddle" border=0></a>'); 
if (fBildpopup.arguments.length>2){
newWindow.document.writeln('<b>'+ bildunterschrift+'</b>')}
newWindow.document.write('</p></body></html>');
newWindow.document.close();
newWindow.focus(); 

if(navigator.appName == "Microsoft Internet Explorer") {
var bildhoehe = newWindow.document.bild.height;
var bildbreite = newWindow.document.bild.width;
{if (bildhoehe>700) { newWindow.resizeTo(bildbreite+27,700);}
 else {
  if (fBildpopup.arguments.length>2) { newWindow.resizeTo(bildbreite,bildhoehe+50); }
  else { newWindow.resizeTo(bildbreite,bildhoehe+29) }}}}
}