if (self != top) {
	top.location = self.location;
	}
var web_code="xxx"
var web_titel="yyy"
//WebCode
    url     = location.href;
    begin   = url.indexOf("r-") + 2;
    eind    = url.indexOf(".htm");
    web_code = url.substring(begin,eind).toUpperCase() 
//WebTitel
    web_titel= document.title.substring(20,124) 
//Bookmark
var Bookmarktekst = "Voeg website nu toe aan je favorieten"
function addBookmark(){
//    var bookmarkurl="http://www.creatieve-vakantie.info"
    var bookmarkurl=location.href;
//    var bookmarktitle="creatieve-vakantie.info"
    var bookmarktitle=document.title
    if (document.all)
        window.external.AddFavorite(bookmarkurl,bookmarktitle)
        }
//Mail aan webmaster
function mailWebmaster() {
    urlVar = web_code + ' - ' + web_titel ;
	window.location.href = 'http://www.creatieve-vakantie.info/w00/f-mail-00.htm?'
}
