function load_adhese()
{	// ADS
	var sidebanners_integration = document.getElementById("sidebanners_integration");
	sidebanners_integration.innerHTML = "<div style='width:220px;height:100px;border:1px solid red;margin-bottom:5px;'><a href='javascript:showIntegrationFrame(\"http://www.google.com\",\"itab_google\", \"100%\", \"400px\")'>this is an isquare (GOOGLE)</a></div>";
	sidebanners_integration.innerHTML += "<div style='width:220px;height:100px;border:1px solid red;;margin-bottom:5px;'><a href='javascript:showIntegrationFrame(\"http://www.yahoo.com\",\"itab_yahoo\", \"100%\", \"700px\")'>this is an isquare (YAHOO)</a></div>";
	
	// HYPERLINKS
	var hyperlinks_integration = document.getElementById("hyperlinks_integration");
	hyperlinks_integration.innerHTML = "<a href='javascript:showIntegrationFrame(\"http://www.google.com\",\"itab_google\", \"100%\", \"400px\")'>hyperlink GOOGLE &raquo;</a><br />"
	hyperlinks_integration.innerHTML += "<a href='javascript:showIntegrationFrame(\"http://www.yahoo.com\",\"itab_yahoo\", \"100%\", \"700px\")'>hyperlink YAHOO &raquo;</a>";
	
	// TABS...
	var tabs_integration = document.getElementById("tabs_integration");
		
	// Dynamische tabs bijmaken...
	// -- 1 -- google
	var div = document.createElement("div");
	var a = document.createElement("a");
	div.className = "s_tab_block_button";			// 'klikbaar' uitzicht							
	div.id = 'itab_google';
	a.innerHTML = "Google";							// Tekst
	a.href = "javascript:showIntegrationFrame('http://www.google.com', 'itab_google', '100%', '400px');"
	div.appendChild(a);		
	tabs_integration.appendChild(div);	
	
	// -- 2 -- yahoo
	var div = document.createElement("div");
	var a = document.createElement("a");
	div.className= "s_tab_block_button";			// 'klikbaar' uitzicht
	div.id = 'itab_yahoo';
	a.innerHTML = "Yahoo";							// Tekst
	a.href = "javascript:showIntegrationFrame('http://www.yahoo.com', 'itab_yahoo', '100%', '700px');"
	div.appendChild(a);	
	tabs_integration.appendChild(div);
}

function showIntegrationFrame(u, id, width, height) {

	// Alle 'normale' + '' tabbladen verbergen + tabs 'klikbaar uitzicht' geven 
	hide_tabs('browse', 9);	
	hide_integration_tabs("tab_integration", "tabs_integration");
	// Deze tab button - 'aangeklikt' zetten
	el = document.getElementById(id);
	el.className = "s_tab_block_button_active";	
	// Integratie iframe inladen
	var iframe = document.getElementById("tab_integration_iframe");
	iframe.src= u;		
	iframe.setAttribute("width", width);	
	iframe.setAttribute("height", height);
		
	// Tabblad van integratie activeren
	var tab_integration = document.getElementById("tab_integration");
	tab_integration.style.display="";	
}