function CheckBrowser()
{				
	if(window.navigator.appName != "Microsoft Internet Explorer")
	{
		alert('You are using unsupported internet browser software. '+
			'Please use Internet Explorer 6.0. or above version.');
		window.location='http://www.usdsoftware.com';
		window.navigate('http://www.usdsoftware.com');
	}
	else return;
}

function StartSettings()
{
	CheckBrowser();
	history.forward();
	
	if(document.getElementsByName('bmLoginControl:_ctl2')(0) != null)
	{
		document.getElementsByName('bmLoginControl:_ctl2')(0).focus();
	}

	if(document.getElementById('bmLoginControl1__ctl0_tbLogin') != null)
		document.getElementById('bmLoginControl1__ctl0_tbLogin').focus();

	if(document.getElementById('bmLoginControl2__ctl0_tbLogin') != null)
	{
		document.title = 'USD Jet Issue Rater';
		document.getElementById('bmLoginControl2__ctl0_tbLogin').focus();
	}
	
	if(document.getElementById('bmlcWLR__ctl0_tbAccountNum') != null)
	{
		document.getElementById('bmlcWLR__ctl0_tbAccountNum').focus();
	}
}

function RemindPass(user_id)
{
	while(user_id != user_id.replace(' ','')){
		user_id = user_id.replace(' ','');
	}
	if(user_id == '')
	{
		alert('Please enter your User ID.');
		return;
	}
	
	var params = document.getElementById('hidRaterTypeID').value + '|' +
		document.getElementById('hidRaterTitle').value;
	
	var st = GetDataFromServer('../Kernel/PassReminderPage.aspx', 'RemindPassword|' + user_id + '|' + params);
	
	alert(st);
}