function cargaFlash(url, DivID, width, height, ID){
	var x = navigator
	if(x.appName == "Netscape"){
		document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" id="'+ID+'" width='+width+' height='+height+'><param name=movie value="'+url+'"><param name=quality valuea=high><param name=wmode value=transparent><param name=menu value=false><embed src="'+url+'" quality="high" bgcolor="#FFFFFF" name="'+ID+'" swLiveConnect="true" width="'+width+'" height="'+height+'" menu=false wmode="transparent" type="application/x-shockwave-flash" PLUGINSPAGE="ttp://www.macromedia.com/go/getflashplayer"></embed></object>');
	}else{
		var myObject = document.createElement('object');
		eval(DivID).appendChild(myObject);
		myObject.width = width;
		myObject.height = height;
		myObject.classid = "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"; 
		myObject.codebase = "http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0";
		myObject.id = ID;
		myObject.movie = url;
		myObject.menu = "False";
		myObject.wmode = "transparent";
	}
}