function route(zipcode,street,city,markertext){
  var url="http://maps.holidaymedia.nl/holiday/?zipcode="+zipcode+"&street="+street+"&city="+city+"&markertext=" + markertext;
  //document.body.insertAdjacentHTML('beforeEnd', '<img src="http://track.holidaymedia.nl/hm/track.lp?c=lokatiemapper&i=holiday.nl" border="0" width="1" height="1">');
  window.open(url,'lokatiemapper','scrollbars=no,resizable=no,toolbar=0,location=0,status=0,menubar=0,width=670,height=520,left=30,top=50');
  return false;
}

function tekoop(aanbieder){
  setOpenerLocation( "/tekoop/index.lp?aanbieder=" + aanbieder );
  return false;
}

function vacature(aanbieder){
  setOpenerLocation( "/vacature/index.lp?aanbieder=" + aanbieder );
  return false;
}

function aanbieding(aanbieder){
  setOpenerLocation( "/aanbieding/index.lp?aanbieder=" + aanbieder );
  return false;
}

function footzy(bedrijfsID){
  setOpenerLocation( "/footzy/index.lp?bedrijfsID=" + bedrijfsID );
  return false;
}

function setOpenerLocation(url){
  opener.location = url;
  window.close();
  return false;
}