function js_Ventana(www,ancho,alto,titulo,target){
	var destino=www+'#'+target;
	var ventana=window.open(destino,titulo,'status=no,scrollbars=yes,location=0,0, resizable=no,width='+ancho+',height='+alto);
	ventana.opener.top.name="opener";
	ventana.focus();
}

function ventana(destino,ancho,alto){
	var ventana=window.open(destino,'','status=no,scrollbars=no,location=0,0, resizable=no,width='+ancho+',height='+alto);
}

function ventananormal(destino,ancho,alto){
	var ventana=window.open(destino,'','status=yes,scrollbars=yes,location=0,0, resizable=yes,width='+ancho+',height='+alto);
}

function actualizarPadre(){
	opener.location.reload();
}
