    function ExportTextList(){
    var xmlHttp;
        try{	
            xmlHttp=new XMLHttpRequest();// Firefox, Opera 8.0+, Safari
        }
        catch (e){
            try{
                xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
            }
            catch (e){
                try{
                    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
                }
                catch (e){
                    alert("No AJAX!?");
                    return false;
                }
            }
        }
    
    xmlHttp.onreadystatechange=function(){
        if(xmlHttp.readyState==4){
            document.getElementById('admin_zone').innerHTML=xmlHttp.responseText;
            //setTimeout('Ajax()',10);
        }
    }
    xmlHttp.open("GET","http://www.eclecthink.com/assets/templates/export_text_list.php",true);
    xmlHttp.send(null);
    }	

	function ExportList(){
    var xmlHttp;
        try{	
            xmlHttp=new XMLHttpRequest();// Firefox, Opera 8.0+, Safari
        }
        catch (e){
            try{
                xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
            }
            catch (e){
                try{
                    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
                }
                catch (e){
                    alert("No AJAX!?");
                    return false;
                }
            }
        }
    
    xmlHttp.onreadystatechange=function(){
        if(xmlHttp.readyState==4){
            document.getElementById('admin_zone').innerHTML=xmlHttp.responseText;
            setTimeout('Ajax()',10);
        }
    }
    xmlHttp.open("GET","http://www.eclecthink.com/assets/templates/export_list.php",true);
    xmlHttp.send(null);
    }
	
	function RemoveUser(id){
    var xmlHttp;
        try{	
            xmlHttp=new XMLHttpRequest();// Firefox, Opera 8.0+, Safari
        }
        catch (e){
            try{
                xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
            }
            catch (e){
                try{
                    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
                }
                catch (e){
                    alert("No AJAX!?");
                    return false;
                }
            }
        }
    
    xmlHttp.onreadystatechange=function(){
        if(xmlHttp.readyState==4){
            document.getElementById('admin_zone').innerHTML=xmlHttp.responseText;
            setTimeout('Ajax()',10);
        }
    }
    xmlHttp.open("GET","http://www.eclecthink.com/assets/templates/remove_user.php?id=" + id,true);
    xmlHttp.send(null);
    }	
    
    function ShowAdmin(){
    var xmlHttp;
        try{	
            xmlHttp=new XMLHttpRequest();// Firefox, Opera 8.0+, Safari
        }
        catch (e){
            try{
                xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
            }
            catch (e){
                try{
                    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
                }
                catch (e){
                    alert("No AJAX!?");
                    return false;
                }
            }
        }
    
    xmlHttp.onreadystatechange=function(){
        if(xmlHttp.readyState==4){
            document.getElementById('password_zone').innerHTML=xmlHttp.responseText;
            //setTimeout('Ajax()',10);
        }
    }
    xmlHttp.open("GET","http://www.eclecthink.com/assets/templates/show_admin.php",true);
    xmlHttp.send(null);
    }	
	
    //window.onload=function(){
//        setTimeout('Ajax()',10);
//        setTimeout('Ajax()',10);		
//    }
	
	function CheckPass(){
		var password = document.getElementById('pswrd').value;
			//alert(password);
	if (password == "password"){
			ShowAdmin();
		}else{
			alert('no entry!');
		}
		
	}