		function confirmDelete(appNickName,verb){

	  		 verb = (typeof verb == 'undefined') ? 'delete' : verb;
			return confirm("Are you sure you want to "+ verb +" the " + appNickName + "?");	
		}

		function noDoubleClick(){
			document.getElementById("submit").style.display = 'none';
			document.getElementById("submitMessage").style.display = 'block';
			return true;
		}
		
		function getByID(id){

			return document.getElementById(id);
		}
		
		function changeVisibility(id,to){
			if ('0' == to){
				getByID(id).style.display = 'none';
			}
			else{
				getByID(id).style.display = 'block';			
			}	
		}

				
		function disableFormElement(id,to){

			if ('0' == to){
				getByID(id).disabled = true;
			}
			else{

				getByID(id).disabled = false;
	
			
			}	
		}