function loginuser() {
		
	if(!checkRequiredField('password', 'Please enter the password.'))
		return false;
	
	document.l_form.action = 'auth-login'+'.php';
	document.l_form.sub.value = 'yes';

	return true;
}

function go_back(url, params){
	window.location = url+"?"+params;
}

function winBRopen(theURL, Name, popW, popH, scroll) { // V 1.0
	if (theURL != ""){
		var winleft = (screen.width - popW) / 2;
		var winUp = (screen.height - popH) / 2;
		winProp = 'width='+popW+',height='+popH+',left='+winleft+',top='+winUp+',scrollbars='+scroll+',resizable=no'
		var Win = window.open(theURL, Name, winProp)
		//if (parseInt(navigator.appVersion) >= 4) { Win.window.focus(); }
	}
}

/* END */