// 
// Inicio FUNCIONES DE NOTICIAS
//


	function newsCambiaDias(d){
		
		d = parseInt(d) - 1;
		
		dias  = new Array(31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
		
		document.forms['newsForm'].dia.options.length = 0;
			
		var i, k
		
		i=0;
		while(i<dias[d]){	
			
			i++;
			document.forms['newsForm'].dia.options[i-1] = new Option(i, i);
	
		}
		
	}
	
	function newsSetToBold(t){
	
		if (t.selectionStart!=t.selectionEnd){
			t.value = (t.value).substring(0, t.selectionStart) + '<b>' + (t.value).substring(t.selectionStart, t.selectionEnd) + '</b>' + (t.value).substring(t.selectionEnd, t.value.length);  
		}
		
		t.focus();
	}
	
	function eliminarNoticia(cod){
		
		if (confirm(_JS_TEXTOS['NEWS_CONFIRMA_BORRADO'])) {
	        location = 'admin.php?action=E&code='+cod;
	    }
	}

// 
// Fin FUNCIONES DE NOTICIAS
//
