	function hiddenview(id){
		document.getElementById(id).style.display="block";
	}
	
	function viewhide(id){
		document.getElementById(id).style.display="none";
	}
	
	function ViewClose(id){
		var Element = document.getElementById(id);
		if(Element){
			if (Element.style.display == "block") {
				Element.style.display="none";
			}else{
				Element.style.display="block";		
			}
		}
	}
	
	function hiddenhtml(id,htmlvalue){
		if (htmlvalue == 1) {
			htmlvalue = '<input type="hidden" name="hiddenadd" value="1"/>';
		}
		document.getElementById(id).innerHTML=htmlvalue;
	}
	
	function hidehtml(id){
		document.getElementById(id).innerHTML="";
	}
	
	
	function klancanel(klan_name,id) {
		var answer = confirm("Сигурен ли си, че искаш да се откажеш от членството си в "+klan_name+" ?")
		if (answer){
	
			window.location = id;
		}
		else{
	
		}
	}
	
	function TopMenuOver(id,color){
		if(document.getElementById(id)){
			document.getElementById(id).style.backgroundColor = color;
		}
	}
	
	function TopMenuOut(id){
		if(document.getElementById(id)){
			document.getElementById(id).style.backgroundColor = '#100E0F';
		}
	}
