// JScript source code
function confirmRebuild()
{
  var r=confirm("Clear your current configuration?")
  if (r==true)
    {
    document.location = "default.asp?clearSession=true";
    }
  else
    {
    return false;
    }
}

function moduleDescription(v)
{
	document.getElementById('contentLeftBottomInner2').innerHTML=v;
}
                        
function moduleDescriptionOut()
{
	document.getElementById('contentLeftBottomInner2').innerHTML="";
}

function generalError(v)
{
	alert(v);
}

function closeWindow(a,s)
{
    window.opener.location.href="default.asp?areaID="+a+"&subID="+s+"&qid="+Math.random()
    close();
}

var xmlHttp

function showModules()
{

xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="getmodules.asp";
url=url+"?q="+Math.random();
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
} 

function stateChanged() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("edit_module").innerHTML=xmlHttp.responseText;
}
}

function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}
