/**
 *
 *   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,'-');
}

// Test upload
function doUpload() {
	// Checken of wel iets ingevoerd		
	if($('#fileToUpload').val() != '') {
		 $.ajaxFileUpload({
			url:'/ajaxUpload.php', 
			secureuri:false,
			fileElementId:'fileToUpload',
			dataType: 'html',
			success: function (data, status){
				$('.LogoBox').html(data)
			},
			error: function (data, status, e) {alert(e);}
		})
	}
}


insertInfo('Wegwijzer naar Bewust Leven', 'Berkdijksestraat 125', '5025 VE', 'Tilburg', '06-47804062', 'info@wegwijzer-naar-bewust-leven.nl', 'www.wegwijzer-naar-bewust-leven.nl')

// Function voor toevoegen informatie aan activiteit
function insertInfo(strOrg, strAdres, strPostcode, strPlaats, strNummer, strEmail, strWebsite) {
	// Updaten velden
	$("input[name='aLocatie']").val(strOrg)
	$("input[name='aAdres']").val(strAdres)
	$("input[name='aPostcode']").val(strPostcode)
	$("input[name='aWoonplaats']").val(strPlaats)
	$("input[name='aTelefoonLocatie']").val(strNummer)
	$("input[name='aAanmeldenBij']").val(strEmail)
	$("input[name='aWebsite']").val(strWebsite)
}