function addHTTP(element) {
   if (!element.value.match("http://") &&  !element.value.match(/^$/) && !element.value.match(/^\//) ) {
	element.value = "http://"+element.value;
   }
   if (!element.value.match(/^http:\/\/.+\..+/) &&  !element.value.match(/^$/) && !element.value.match(/^\//) ){
	alert("This is not a valid url. Please check if it is correct.");
   }
}

