function Redirect()
{
	//Get Server
	loc1 = location.href.toLowerCase();
	var locationRedirect;

	if (loc1.indexOf("genesis") != -1)
	{
		locationRedirect = "http://genesis";
	}
	else if (loc1.indexOf("localhost") != -1)
	{
		locationRedirect = "http://localhost";
	}
	else
	{
		locationRedirect = "http://www.truestarhealth.com";
	}
	//alert(locationRedirect);
	return locationRedirect;
}


function SetUserFocus()
{
	(document.getElementById('username') != null)
	{
		document.getElementById('username').focus();
	}

}

function Login()
{
    if (document.getElementById('username') != null && document.getElementById('password') != null)
    {
        var boolRet = true;
	    if (document.getElementById('username').value =='')
	    {
		    alert('user name is a required entry');
		    document.getElementById('username').focus();
		    boolRet = false;
    	
	    }
	    else
	    {
	        if (document.getElementById('password').value =='')
	        {
		        alert('password is a required entry');
		        document.getElementById('password').focus();
		        boolRet = false;
	        }
	    }
	    if (boolRet)
	    {
		//alert(Redirect());
	        document.form1.action = Redirect() + "/default.asp";//"http://www.truestarhealth.com"
	        document.form1.submit();   
	    }
	}
}

function showPress(evt)
{
	evt = (evt) ? evt : ((event) ? event : null);
	if (evt) 
	{
		if (evt.keyCode == 13)
		{
			if (document.getElementById('username') != null && document.getElementById('password') != null) 
			{
				Login();
			}	
		}
	}
}	

document.onkeypress = showPress;