	function ListView_DblClick(id,url){
		window.location= url;
	}

	function CheckAll(formname){
		var theForm = document.forms[formname];
		for(i=0; i<theForm.elements.length; i++){
			if(theForm.elements[i].type == "checkbox"){
				theForm.elements[i].checked = true		
			}	
		}
	} 
	
	function UncheckAll(formname){
		var theForm = document.forms[formname];
		for(i=0; i<theForm.elements.length; i++){
			if(theForm.elements[i].type == "checkbox"){
				theForm.elements[i].checked = false
			}	
		}
	} 
