function IsEmpty(aTextField) {
   if ((document.getElementById(aTextField).value.length==0) || (document.getElementById(aTextField).value==null)) {
      return true;
   } else {
   	return false; 
   }
}

function GoToUrl(url) {
	window.location = url;
}