function AJAX_Controller(myFullURL,ResponseContainer,RedirectHome){
var xmlHttp;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      try
        {
        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
      catch (e)
        {
        alert("Your browser does not support AJAX!");
        return false;
        }
      }
    }
    
    xmlHttp.onreadystatechange=function(){
	if(xmlHttp.readyState==4){
		var response = xmlHttp.responseText;
		
		parent.document.getElementById(ResponseContainer).innerHTML=response;
		if(RedirectHome){
			location.href='/admin/';
		}
		changeInputs();
		}
	}
	xmlHttp.open("GET",myFullURL,true);
	xmlHttp.send(null);
}

function ShowAlertBox(message,closeit){
	if(!closeit){
	//document.getElementById('AlertTable').style.display='';
	document.getElementById('AlertWindow').style.width='40%';
	document.getElementById('AlertWindow').style.left='30%';
	document.getElementById('AlertWindow').style.top='50%';
	document.getElementById('AlertWindow').style.paddingTop='20px';
	document.getElementById('AlertWindow').style.paddingBottom='20px';
	
	document.getElementById('AlertWindow').style.border='10px solid #ff5505';
	document.getElementById('AlertWindow').style.backgroundColor='#f1f1f1';
	document.getElementById('AlertWindow').style.textAlign='center';
	document.getElementById('AlertWindow').innerHTML = message;
	}else{
	document.getElementById('AlertWindow').style.width='0px';
	document.getElementById('AlertWindow').style.height='0px';
	document.getElementById('AlertWindow').style.border='0px solid gray';
	document.getElementById('AlertWindow').innerHTML = '';
	}
}









