function hay_caracter()
{
	swf=1;
	
	if(trim(document.getElementById('NEWV_Name').value)=='')
	{
		window.alert('Ingrese el Nombre de la Noticia en Espaņol');
		document.getElementById('NEWV_Name').focus();
		swf=0;
		return;
	}
	
	if(trim(document.getElementById('NEWV_Name_En').value)=='')
	{
		window.alert('Ingrese el Nombre de la Noticia en Ingles');
		document.getElementById('NEWV_Name_En').focus();
		swf=0;
		return;
	}

	if(trim(document.getElementById('IMGI_Id_1').value)=='')
	{		
		if (trim(document.getElementById('IMGI_Id_Edit_1').value)=='')
		{
			window.alert('Seleccione la imagen de la Noticia');
			document.getElementById('IMGI_Id_1').focus();
			swf=0;
			return;
		}
	}
	else
	{
		var exts = new Array(".gif", ".jpg", ".png");
		if (!validateExts('IMGI_Id_1', exts))
		{
			window.alert('Comprueba la extension de el archivo a subir. \nSolo se pueden subir archivos con extensiones: ' + exts.join());
			document.getElementById('IMGI_Id_1').focus();
			swf=0;
			return;	
		}
	}

	if(trim(document.getElementById('NEWT_Sumilla').value)=='')
	{
		window.alert('Ingrese la sumilla de la Noticia en Espaņol');
		document.getElementById('NEWT_Sumilla').focus();
		swf=0;
		return;
	}
	
	if(trim(document.getElementById('NEWT_Sumilla_En').value)=='')
	{
		window.alert('Ingrese la sumilla de la Noticia en Ingles');
		document.getElementById('NEWT_Sumilla_En').focus();
		swf=0;
		return;
	}

	if (validateFkc('data[News][NEWT_Content]'))
	{
		window.alert('Ingrese el contenido de la Noticia en Espaņol');
		document.getElementById('data[News][NEWT_Content]').focus();
		swf=0;
		return;		
	}
	
	if (validateFkc('data[News][NEWT_Content_En]'))
	{
		window.alert('Ingrese el contenido de la Noticia en Ingles');
		document.getElementById('data[News][NEWT_Content_En]').focus();
		swf=0;
		return;		
	}
	
	return swf;
}