function preSubmit(value){

	if(!value){return false;}
	if(value.match(/(http|ftp):\/\/[!#-9A-~]+\.+[a-z0-9]/i)){
		return true;
	}
	return false;
}
