function resizeflash(iHeight,pSWF){
	if(pSWF=="kolom"){
		oFlash = document.getElementById("swf_movie_embed"); 
		if(oFlash!=null){
			oFlash.height = iHeight;
		}
		oFlash = document.getElementById("swf_movie");
		if(oFlash!=null){
			oFlash.height = iHeight;
		};
	};
	if(pSWF=="titel"){
		//voor de pageSubtitel deze wordt alleen gebruikt als een pagina ook de rechtekolom heeft
		oFlash = document.getElementById("swf_movie_embed_titel");
		if(oFlash!=null){
			oFlash.height = iHeight;
		};
		oFlash = document.getElementById("swf_movie_titel");
		if(oFlash!=null){
			oFlash.height= iHeight;
		};
	};
	if(pSWF=="hometalent"){
		oFlash = document.getElementById("hometalent_embed");
		if(oFlash!=null){
			oFlash.height = iHeight;
		};
		oFlash = document.getElementById("hometalent");
		if(oFlash!=null){
			oFlash.height= iHeight;
		};
	};
}
