function WriteSwf( media,width,height,paramt )
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'" >');
	document.write('	<param name="movie" value="'+media+'" />');
	document.write('	<param name="quality" value="high" />');
	document.write('	<param name="FlashVars" value="'+paramt+'"/>');
	document.write('	<param name="wmode" value="transparent" /><param name="LOOP" value="false" />');
	document.write('	<param name="menu" value="false" />');
	document.write('	<embed FlashVars="'+paramt+'" src="'+media+'" width="'+width+'" height="'+height+'" loop="false" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" ></embed>');
	document.write('</object>');
}



function CambiarModulo(modulo){
	document.location.href = 'index.php?Modulo='+modulo;
}

function CambiarPagina(pagina){
	document.location.href = pagina+'.php';
}

function AbrirArchivo(file){
	fo = window.open(file,'file','');
	fo.focus();
}

function CambiarOpcion(opcion){
	document.location.href = 'index.php?op='+opcion;
}

function nuevo_contenido(opcion){
	document.location.href = 'index.php?op='+opcion+'&insert=1';
}

function edit(id_contenido, opcion){
	document.location.href = 'index.php?id='+id_contenido+'&update=1&op='+opcion;
}

function eliminar(id_contenido, opcion){
	document.location.href = 'index.php?id='+id_contenido+'&delete=1&op='+opcion;
}

function valForm(form){
	alert('Codigo Validador');
	form.submit();
}

function desbloquear_campo(id){
	el = document.getElementById(id);
   //alert(el);
	el.disabled = false;
}