// JavaScript Document

$().ready(function() {
	  $("#archivo_edicion_id").change(function(){		
		  window.location = "http://www.laopinionsemanario.com.ar/index.php?doc=impresa&archivo_id="+$('#archivo_edicion_id').val();
	  });
});

function limitarCaracteres(textid, limit, infodiv)
{
	var text = $('#'+textid).val();	
	var textlength = text.length;
	if(textlength > limit)
	{
		$('#' + infodiv).html('<strong>'+limit+'</strong> caracteres disponibles.');
		$('#' + infodiv).html('0');
		$('#'+textid).val(text.substr(0,limit));
		return false;
	}
	else
	{
		$('#' + infodiv).html('<strong>'+(limit - textlength)+'</strong> caracteres disponibles.');
		return true;
	}
}
