function Keywords(theURL,winName,features) {	if (confirm('This window can take upwards of a minute to load if you are on a slow connection.\n\nWould you like to continue?')) {		MM_openBrWindow(theURL,winName,features)	}}function MM_openBrWindow(theURL,winName,features) { //v1.2	window.name = 'main'	window.open(theURL,winName,features);}function ValidateForm() {	if (document.LoginForm.Username.value == '') {		alert('Please fill in your username')		document.LoginForm.Username.focus()		return false	}	if (document.LoginForm.Password.value == '') {		alert('Please fill in your password')		document.LoginForm.Password.focus()		return false	}}function ValidateEditForm() {	if (document.EditForm.Address.value=='') {		alert('Please enter a address.')		return false;	}	if (document.EditForm.Suburb.value=='') {		alert('Please enter a suburb.')		return false;	}	if (document.EditForm.State.value=='') {		alert('Please enter a state.')		return false;	}	if (document.EditForm.Postcode.value=='') {		alert('Please enter a post code.')		return false;	}	if (document.EditForm.Country.value=='') {		alert('Please enter a country.')		return false;	}	if (document.EditForm.Phone.value=='') {		alert('Please enter a phone number.')		return false;	}	if (document.EditForm.Username.value=='') {		alert('Please enter a username.')		return false;	}	if (document.EditForm.Password.value=='') {		alert('Please enter a password.')		return false;	}	return true;}function EditCat() {	if (confirm('This window can take upwards of a minute to load if you are on a slow connection.\n\nWould you like to continue?\n\nYour changes will still be saved.')) {		document.EditCatForm.elements[2].value = 'edit_categories.lasso'	} else {		document.EditCatForm.elements[2].value = 'edit_done.lasso'	}}function CompanyNameCheck() {	if (document.CompanyNameForm.CompanyName.value.length <= 2) {		alert('Please enter a full company name')		return false	}	return true}function newWin(URL){thewindow=window.open(URL,"Advertisment","toolbar=no, width=458, height=350, status=no, scrollbars=yes, resize=no, menubar=no");}