/** change font news **/
var max=19;
var min=10;
var numero= 12;
function increaseFontSize() {
	if(numero!=max) numero += 1;
    else numero=10;
	$("#nota_txt_noticia").css("font-size", numero);
    $("#nota_txt_noticia > *,#nota_txt_noticia > * > *,#nota_txt_noticia > * > * >*,#nota_txt_noticia > * > * > * > * ,#nota_txt_noticia > * > * > * > * > *,#nota_txt_noticia > * > * > * > * > * > *,#nota_txt_noticia > * > * > * > * > * >* >*,#nota_txt_noticia > * > * > * > * > * >* >*>*,#nota_txt_noticia > * > * > * > * > * >* >*>*,#nota_txt_noticia > * > * > * > * > * >* >*>*>*,#nota_txt_noticia > * > * > * > * > * >* >*>*>*>*,#nota_txt_noticia > * > * > * > * > * >* >*>*>*>*").css("font-size", numero);

}

function decreaseFontSize() {
	if(numero!=min) numero -= 1;
    else numero=19;
	$("#nota_txt_noticia").css("font-size", numero);
    $("#nota_txt_noticia > *,#nota_txt_noticia > * > *,#nota_txt_noticia > * > * >*,#nota_txt_noticia > * > * > * > * ,#nota_txt_noticia > * > * > * > * > *,#nota_txt_noticia > * > * > * > * > * > *,#nota_txt_noticia > * > * > * > * > * >* >*,#nota_txt_noticia > * > * > * > * > * >* >*>*,#nota_txt_noticia > * > * > * > * > * >* >*>*,#nota_txt_noticia > * > * > * > * > * >* >*>*>*,#nota_txt_noticia > * > * > * > * > * >* >*>*>*>*,#nota_txt_noticia > * > * > * > * > * >* >*>*>*>*").css("font-size", numero);

}


/** end change font news **/


$(function(){
 $('.auto-submit-star').rating({
  callback: function(value, link){
  	votar(value);
  }
 });

});


function votar(value){
	$("#voto_value").val(value);
	call_bak('btn_voto');
}

/** mail popup **/
function popupMail(id) {
	var url = "mailer/"+id;
	newwindow=window.open(url,'TiempoSur_Mail','height=580,width=529');
	if (window.focus) {newwindow.focus()}
}
/** end mail popup **/


/** print popup **/
function popupPrint(id) {
	var url = "printer/"+id;
	newwindow=window.open(url,'TiempoSur_Imprimir','height=600,width=550,scrollbars=yes');
	if (window.focus) {newwindow.focus()}

}




