// JavaScript Document
function enlace(pagina,target){
	if (target==0){
		abrimos='_self';
	}else{
		abrimos='_blank';
	}
	
	document.getElementById('html').value=pagina;
	document.getElementById('from_enlace').target=abrimos;
	document.getElementById('from_enlace').submit();
}
document.write('<form id="from_enlace" action="http://www.extremaduraenunclick.com" method="post" name="from_enlace"><input id="id" type="hidden" value="'+operador+'" name="id"/><input id="id_of" type="hidden" value="'+oficina+'" name="id_of"/><input id="idioma" type="hidden" value="'+idioma+'" name="idioma"/><input id="html" type="hidden" value="" name="html"/></form>');

