var _contentArea = null;

function renderContent()
{
	if(_contentArea==null) {
	    _contentArea = document.createElement("DIV");
	    _contentArea.className = "contentHolder";
	    document.body.appendChild(_contentArea);
    }	    
    
	//_contentArea.style.height="600px";
	//_contentArea.style.overflowY="auto";
	//_contentArea.style.overflowX="hidden";

	//_contentArea.innerHTML = "aaa";
	
	
	return _contentArea;
}