function chkTop() {
   if ( window.top != window.self ) { 
      window.top.location.href = document.location; 
   }
}
function storbild(bildfil,brd,hjd,titl) {
var brd1=brd+50;
var hjd1=hjd+50;
var newwindow=window.open('','ppup'+bildfil,'width='+brd1+',height='+hjd1+',location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=yes,toolbar=no,directories=no')
newwindow.document.writeln("<html><head><title>"+titl+"</title></head>");
newwindow.document.writeln("<body bgcolor='#002200'>");
newwindow.document.writeln("<center>");
newwindow.document.writeln("<img src="+bildfil+" border='1' >");
newwindow.document.writeln("</center>");
newwindow.document.writeln("</body></html>");
newwindow.document.close();
newwindow.focus();
}
