
function isUrl(s) {
	var regexp = /(http|https):\/\/([a-zA-Z0-9-]{1,}\.+)([a-zA-Z0-9-]{2,4})(\/.){0,}/
	return regexp.test(s);
}
