var popurls=new Array()
popurls[0]="http://www.ramonas-shop.de"

function openpopup(popurl){
var winpops=window.open(popurl,"","width=800,height=600,toolbar,location,directories,status,scrollbars,menubar,resizable")
winpops.blur()
window.focus()
}

function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { 
      offset += search.length
      end = document.cookie.indexOf(";", offset);
      if (end == -1)
         end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}

function loadornot(){
if (get_cookie('nsw')==''){
openpopup(popurls[Math.floor(Math.random()*(popurls.length))])
document.cookie="nsw=yes"
}
}

loadornot()