function gotoUrl(link) {
   	var url=link;
   	document.location.href="http://" + url;
} 

function openUrl(link) {
	var url=link;
	window.open("http://" + url);
}

if (top == self){
var fs =
'<frameset frameborder=1 cols="180,*">'+
'<frame src="http://www.bboffice.nl/gbp_idx.htm" name="indexframe" scrolling=auto>'+
'<frameset frameborder=1 rows="150px, *">'+
'<frame src="http://www.bboffice.nl/gbp_head.htm" name="headframe" scrolling=no noresize>'+
'<frame src="" name="viewframe" scrolling=auto>'+
'</frameset>'+
'</frameset>';
document.write(fs);
frames['viewframe'].location.href = self.location.href;
}

