<!-- cartel de confirmación de acción -->
function confirmar(enlace,msg) {
        var confirmado=confirm(msg);
        if (confirmado) {
      enlace.href;
   }
        return confirmado;
}
<!-- abrir una ventana limpia de herramientas -->
function abrir_ventana(url,ventana,ancho,alto,izq,arr) {
		documentWindow=window.open(url,ventana,'toolbar=no,location=no,status=no,scrollbars=yes,width='+ancho+',height='+alto+',left='+izq+',top='+arr);
}

