function nueva_ventana(ref,ancho,alto){
	features = "width="+ancho+",height="+alto+",scrollbars=yes,resizable=yes,location=yes,menubar=yes,status=yes,toolbar=yes";//'';
	window.open(ref,ancho+alto,features);
}
function nueva_ventana_noticia(ref,ancho,alto){
	features = "width="+ancho+",height="+alto+",scrollbars=yes,resizable=yes";//'';
	window.open(ref,ancho+alto,features);
}
function newWindowElement(ref,ancho,alto,conInd){
    
    var value=document.getElementById(conInd).value;
    features="width="+ancho+",height="+alto+",scrollbars=yes,resizable=yes";//'';
 	window.open(ref+value,ancho+alto,features);
}
