/**
 *
 *   SAIL CMS FUNCTIES
 *
 */
// Edit menu pagina's/users
function ShowEditMenu(ID) {
	$('form[name="Edits"]').hide()
	$('#'+ID).show()
}

// Weghalen ALLE spaties
function RemoveWhitespace(inp) {
	inp.value = inp.value.replace(/\s+/g,'-');
}

