//-------------------------------------------------
// UbicasFunctions.js
// Libreria de funciones de Ubicas.com
//
// IncubandoIdeas copyright 2003
//-------------------------------------------------

function GotoSite( id, url ) {
	var Name = 'Ubicas';
   var URL = gSitePath+'goto_site.php?ID='+ id +'&URL='+ escape(url);

   newwindow = window.open( URL, Name, 'resizable=yes,menubar=yes,location=yes,toolbar=yes,status=yes,scrollbars=yes,directories=no,width=500,height=400' );
}

function GotoLink( id, url ) {
	var Name = 'Ubicas';
   var URL = 'http://www.ubicas.com/goto_pub.php?ID='+ id +'&URL='+ escape(url);

   newwindow = window.open( URL, Name, 'resizable=yes,menubar=yes,location=yes,toolbar=yes,status=yes,scrollbars=yes,directories=no,width=500,height=400' );
}


// LOGIN LLEGOCORREO.COM
function LoginLlegoCorreo()
   {
       if ( vLCEmail() )
          {
          document.FormLogin.submit();
          }

   }

// Validacion Email
function vLCEmail() 
    {
	if (document.FormLogin.login_username.value == "")
           {
             alert('\nDebés ingresar tu e-mail.');
             document.FormLogin.login_username.focus();
             return(false);
        }

        if (document.FormLogin.login_username.value.indexOf('@',0)==-1 || document.FormLogin.login_username.value.indexOf('@',0)== 0 ||
          document.FormLogin.login_username.value.indexOf('.',0)==-1)
             {
                 alert('\nLa dirección de e-mail no es válida.');
                 document.FormLogin.login_username.focus();
                 return(false);
              }
             else { return(true); }
    }
// -->
