function switchHeader(url) {
	
 var header = document.getElementById("CMSheader");
 header.innerHTML="<img src='Images/pixel.gif' width=640 height=300>";
 header.style.background = "#000000 url('"+url+"') no-repeat left top";
 
 scroll(0,0);
}


function showFlashVideo(url) {
/*
	var html = "<iframe border=0 width=640 height=300 frameborder=0 src='flashplayer/flvplayer.php?f="+url+"'></iframe>";
	document.getElementById("CMSheader").innerHTML = html;
*/

	var so = new SWFObject('/flashplayer/player.swf','mpl','480','270','9');
	so.addParam('allowscriptaccess','always');
	so.addParam('allowfullscreen','true');
//	so.addParam('flashvars','autostart=true&controlbar=over&skin=flashplayer/kleur.swf&file='+url);
	so.addParam('flashvars','autostart=true&controlbar=over&file='+url);
	so.write('CMSheader');

	scroll(0,0);
	return false;
}
