// Notwendige Java-Scripte 
// Compilation 1
// Stand : 06.07.07
// ----------------------------------------------------------------------


function MM_openBrWindow(theURL,winName,features) { 
  //v2.0
  newwindow=window.open(theURL,winName,features);
  newwindow.focus();
}

function startshop (theOptions,w,h) {  
  // v1.1
  // Stefan Blecher 19.07.2007
  // window.open('/forsale/pro/index.php'+theOptions,'altshop',' height=800, width=1000, statusbar=no, resizable=yes, scrollbars=yes ');
  newwindow = window.open('/forsale/pro/index.php'+theOptions,'altshop','innerWidth='+(w||1000)+', width='+(w||1000)+', height='+(h||600)+', titlebar=no, toolbar=no, menubar=no, location=no, status=no, resizable=yes, scrollbars=yes');
  newwindow.focus();
}

function closeshop () { 
  // v1.0
  // Stefan Blecher 19.07.2007
  window.close()
}  