//
// JavaScript Utilities
// Copyright (c) 2003 Gulliver S.r.L.
// All Rights Reserved.
//		
//----------------------------------------------------------------------------------------------------
//
// Funzione autologin Brex
//

function doLogon() {
  var userTextCtrlValue = document.logonForm.userTextCtrl.value;
  var passwordCtrlValue = document.logonForm.passwordCtrl.value;

  if (userTextCtrlValue == '') {
    alert("Devi specificare un nome utente ed una password per l'accesso!");
    document.logonForm.userTextCtrl.focus();
  } else if (passwordCtrlValue == '') {
    alert("Devi specificare un nome utente ed una password per l'accesso!");
    document.logonForm.passwordCtrl.focus();
  } else {        
        openBrWindow("dlgbox-access-top.htm", "Verifica", "width=300,height=150");    	
  }
}

function immagini(img,w,h) {
	var url = "images/" + img;
	var name = "Immagini";
	var w = w;
	var h = h;
	var parametri = "resizable=no,width=" + w + ",height=" + h + ",location=no";
	openBrWindow(url,name,parametri);
}
