// JavaScript Document

function getObject(strName)
{ 
	return(document.getElementById(strName)); 
}

function setDivStyle(divName)
{ 
	return(getObject(divName).style); 
}

function getAjaxContent(strUrl)
{

	strUrl = encodeURI(strUrl);
	
	var a = new Ajax();
	a.set_async(false);
	a.set_cache(true);
  
	return a.send(strUrl);
	
}
