// Drucken
function Print() 
{ 
   var sOption="toolbar=no,location=no,directories=no,menubar=no,"; 
       sOption+="scrollbars=yes,width=630,height=400,left=100,top=25"; 

   var sWinHTML = document.getElementById('contentprint').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<html><head><base href="http://www.spettacoli29.ch/"><LINK href=css/global.css rel=Stylesheet></head><body bgcolor="#7faed0">'); 
       winprint.document.write(sWinHTML);
       winprint.document.write('<br><br><a href="JavaScript:window.print();"><img src="img/print.gif" border="0" alt="Print"></a>&nbsp;&nbsp;<a href="JavaScript:self.close();"><img src="img/close_w.gif" border="0" alt="Fenster schliessen"></a>');           
       winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}

function clickIE() {
if (document.all) {
return false;
}
} 
function clickNS(e) {
if (document.layers||(document.getElementById&&!document.all)) { 
if (e.which==2||e.which==3) {
return false;
}
}
} 
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS;
} 
else{
document.onmouseup=clickNS;
document.oncontextmenu=clickIE;
} 
document.oncontextmenu=new Function("return false") 



////
function Foto(img){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img);
}
function Controlla(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img){
  largh=foto1.width+20;
  altez=foto1.height+20;
  stringa="width="+largh+",height="+altez;
  finestra=window.open(img,"",stringa);
}
////
