function PhotoWindow(img,title){
   foto1= new Image();
   foto1.src=(img);
   Controll(img,title,0);
}

function PhotoWindowDe(img,title){
   foto1= new Image();
   foto1.src=(img);
   Controll(img,title,1);
}

function Controll(img,title,ver){
   if((foto1.width!=0)&&(foto1.height!=0)){viewFoto(img,title,ver);}
   else{pfunction = "Controll('"+img+"','"+title+"','"+ver+"')";setTimeout(pfunction,20);}
}

function viewFoto(img,title,ver){
   //650 pxl on long side & screen.res/920 gives good quality at all resolutions
   pfactor=1;
   if(screen.width<1024){pfactor=screen.width/920;}
   pwidth=foto1.width*pfactor;pheight=foto1.height*pfactor;tm=0;lm=0;
   //pwidth=foto1.width;pheight=foto1.height;tm=0;lm=0;
   if(navigator.appName=="Netscape"){pwidth+=19;pheight+=19;tm=7;lm=7;}
   win=window.open("","","left=0,top=0,width="+pwidth+",height="+pheight);win.focus();
   planstr=ver==1?"Durch Anklicken Fenster schliessen":"Click to close this window";
   if(navigator.appName=="Netscape"){pwidth-=19;pheight-=19;}
   win.document.write('<title>'+title+'</Title><a href="javascript:;" onClick="window.close()"><body    topmargin="'+tm+'" leftmargin="'+lm+'"></body><img src="'+img+'" alt="'+planstr+'" width='+pwidth+' height='+pheight+'>')
   win.document.close();
}

//status bar message

function status_bar() {
str = "Wiltshire School of Gymnastics online";
status = str;
}
document.onload = status_bar();