var blog = null;
var popup = 'http://geheimbild.freenet.de/popups/detail/index.html';
var vote  = 'http://divphp.freenet.de/geheimbild/popVote.php';
var geheimWin = 'width=490,height=390,status=0,resizable=no,scrollbars=yes,';
var geheimagb = 'width=490,height=450,status=0,resizable=yes,scrollbars=yes,scrolling=yes';
function openBlog(id)
  {
  blog = window.open(popup+'?id='+id,'blog_window','width=640,height=480,location=no,menubar=no,resizable=yes,scrollbars=auto,status=no,toolbar=no');
  blog.focus();
  }
function openVote(all)
  {
  blog = window.open(vote+'?all='+all,'vote_window','width=640,height=480,location=no,menubar=no,resizable=yes,scrollbars=auto,status=no,toolbar=no');
  blog.focus();
  }

function openWin(theURL,winName,features,w,h) {
  if ( w != "" && w != undefined ) {
    breite = RegExp("(width=[0-9]+)");
    if (  features.search("width=") >= 0 ) { 
      features = features.replace(breite,"width="+w);
    } else {
      features = features + ",width=" + w + "";
    }
  }
  if ( h != "" && h != undefined ) {
    hoehe = RegExp("(height=[0-9]+)");
    if ( features.search("height=") >= 0 ) {
      features = features.replace(hoehe, "height=" + h);
    } else {
      features = features + ",height=" + h + "";
    }
  }
  Fenster = window.open(theURL,winName,features);
  Fenster.focus();
}
