function goHoroscopes(form) {
	index = form.sign.selectedIndex
	if (index != "" && form.sign.options[index].value != "") {
	 	document.location.href = form.sign.options[index].value
	}
}

function goURL( url ) {
	// redirects to the url passed
	document.location.href = url;
}


function goSearch( url ) {
	// redirects to the url passed
	goURL(url);
                   return false;
}