//framecheck




if(findFrame('icattTopFrame') && findFrame('mainFrame')) {
	//nothing;
}else{
	var vrtkn = this.location.href.indexOf('?');
	var qstr = this.location.href.substr(vrtkn)
	if(vrtkn > -1){
		topframe.location.href = 'index.asp'+ qstr ; //topframe is een globale variabele gedefinieerd in wtp25/sitemap/js/frames.asp
	}else{
		topframe.location.href = 'index.asp';		
	}

}

