var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function Botones_DoFSCommand(command, args) {
  var BotonesObj = InternetExplorer ? Botones : document.Botones;
  if( command == 'confirm' )
    if(confirm('¿Está seguro que desea ingresar al Área para Clientes?'))
      location.href = '/cgi-bin/secure/Login';
}
// Hook for Internet Explorer 
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && 
    navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
  document.write('<SCRIPT LANGUAGE=VBScript\> \n');
  document.write('on error resume next \n');
  document.write('Sub Botones_FSCommand(ByVal command, ByVal args)\n');
  document.write('  call Botones_DoFSCommand(command, args)\n');
  document.write('end sub\n');
  document.write('</SCRIPT\> \n');
}
