﻿// JScript File

function GoLogo()
{
if (navigator.userAgent.indexOf("Firefox")!=-1)
{
	var x = document.getElementById('portalalias').value;

	if (x != null)
	{
           window.location = 'http://' + x;
	}
	return false;
}
else
{
    var x = document.all["portalalias"];
    
    if (x != null)
    {
        window.location = 'http://' + x.value;
    }
}

}
