function doNothing() {}function doPage(p_sPage){	document.frmSubmit.action = p_sPage;	document.frmSubmit.submit();}function doSubmit(){	document.frmSubmit.action = 'edit_location.php';	document.frmSubmit.submit();}function delImg(p_sLocId,p_sImgName){	if (confirmSubmit()) {	   window.location="del_img.php?loc_id=" + p_sLocId + "&img=" + p_sImgName;	} else {	   return false;	}	}function confirmSubmit(){var agree=confirm("Weet u zeker dat u deze afbeelding wilt verwijderen?");if (agree)	return true ;else	return false ;}//script t.b.v. FCKEditorfunction ReplaceAllTextareas() {    // replace all of the textareas    var allTextAreas = document.getElementsByTagName("textarea");    for (var i=0; i < allTextAreas.length; i++) {    var oFCKeditor = new FCKeditor( allTextAreas[i].name ) ;    oFCKeditor.BasePath = "/FCKeditor/" ;    oFCKeditor.ToolbarSet = 'LocDB' ;    oFCKeditor.ReplaceTextarea() ;    }}
