function goToURL(urlTo){
	if (urlTo != null){
		document.location = urlTo;
		return true;
	}
	return true;
}
