function check_gobar_login(form)    {
	allInput=form.getElementsByTagName('INPUT');
	result = true;
	firstbox = 0;
	for (i=0; i < allInput.length; i++) {
			
			box = allInput[i];
			if ( box.className.search(/required/) > -1 ) {
					if (!box.value)    {
							box.style.backgroundColor='#FFAAAC';
							result = false;
							firstbox += 1;
							if (firstbox == 1)	box.focus();
					}
			}
			
			//minimum of 6 characters
			if ( box.className.search(/min6/) > -1 ) {
				if (box.value.length < 6)	{
					box.style.backgroundColor='#FFAAAC';						
					result = false;
					firstbox += 1;
					if (firstbox == 1)	box.focus();
				}
			}
			
			// check email
			if ( box.className.search(/email/) > -1 ) {
				if (checkemail(box) == false)	{
					result = false;
					firstbox += 1;
					if (firstbox == 1)	box.focus();
				}
			}
	}
	if (result == false)    {
			return false;
	}
}

function quickjump(dit)    {
    window.location=dit.value;
}