/* 

Copyright www.evildesigners.com 2006

Alle rechten zijn voorbehouden aan www.evildesigners.com .

Het script , in zijn geheel of in stukken mag niet gekopieerd worden en of 
verspreid worden zonder enige toestemming van Miguel Derese ( www.evildesigners.com ) . 

*/


var pad = 'opmaak/siteCABx03/' ; // Pad voor de TPL Files van het menu 
var type = 'tpl' ; // Pad voor de TPL Files van het menu 
var xmlhttp ; 
var content = 'container08' ; 

function loadXMLDoc ( url )
{

url = pad + url ; 
xmlhttp = null ;

if ( window.XMLHttpRequest ) {

xmlhttp = new XMLHttpRequest () ; 

} else if ( window.ActiveXObject ){

xmlhttp = new ActiveXObject( "Microsoft.XMLHTTP" ) ; 
 
}

if ( xmlhttp != null ) {

xmlhttp.onreadystatechange = state_Change ;
xmlhttp.open( "GET" , url , true ) ;
xmlhttp.send( null ) ;

urchinTracker( url );


} else {

alert( "Uw browser heeft geen ondersteuning voor XMLHTTP ." ) ; 

}

}

function state_Change()
{

if ( xmlhttp.readyState == 4 ) {

if ( xmlhttp.status == 200 ) {
	
document.getElementById( content ).innerHTML=xmlhttp.responseText ;

} else {

xhtmlstrictprobleem1 = '<' ; 
xhtmlstrictprobleem2 = 'img' ; 
xhtmlstrictprobleem3 = '/>' ; 

document.getElementById( content ).innerHTML= xhtmlstrictprobleem1 + xhtmlstrictprobleem2 + ' src="opmaak/siteCABx05/delete.jpg" alt="img" style="width:16px; height:16px; margin-top:5px; margin-bottom:-4px;" ' + xhtmlstrictprobleem3 + ' De opgevraagde pagina kon niet gevonden worden ... ' ;

}

} else

{

xhtmlstrictprobleem1 = '<' ; 
xhtmlstrictprobleem2 = 'img' ; 
xhtmlstrictprobleem3 = '/>' ; 

document.getElementById( content ).innerHTML= xhtmlstrictprobleem1 + xhtmlstrictprobleem2 + ' src="opmaak/siteCABx05/hourglass.jpg" alt="img" style="width:16px; height:16px; margin-top:5px; margin-bottom:-4px;" ' + xhtmlstrictprobleem3 + ' Bezig met ophalen van de data , een ogenblik geduld ... ' ;

}

}
