

/* 
Terug in frameset / script plaatsen in head sectie
pagina wordt als parameter meegegeven bij het oproepen index.htm?url=....
*/
var url=parent.location.href;
var record;

if (url == self.location.href)
 	{
	/*
	Bepalen pagina.htm uit url
	*/
	url=url+"";
	record=url.split("/");
	window.location.href="index.htm?url="+record[record.length-1];
	} 



