function goNow(thePlace) {
	window.location = thePlace;
}

function eF_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function _getRootURL(){
	return encodeURIComponent("http://" + window.location.hostname);
}

function removeBadImages(theOBJ) {
	theOBJ.style.display='none';
}

function checkForm(myForm) {
	var theEmail = myForm.email.value;
	if (theEmail == "") {
		alert("Please enter your email");
		myForm.email.focus();
		return false;
	}
	
	var thebName = myForm.bName.value;
	if (thebName == "") {
		alert("Please enter your blogs name");
		myForm.bName.focus();
		return false;
	}
	var theUrl = myForm.url.value;
	if (theUrl == "") {
		alert("Please enter your blogs Address");
		myForm.url.focus();
		return false;
	}
	var theValidator = myForm.validator.value;
	if (theValidator == "") {
		alert("Please enter the validation text");
		myForm.validator.focus();
		return false;
	}
}

function doSearch() {
	var type = document.searchForm.type.value;
	var keywords = document.searchForm.keywords.value;
	document.location = '/search/type/' + type + '/tags/' +  keywords;
}