  // Set content height..
  function initPageSettings()
  {
    
	var div = document.getElementById("div1");
	if(div) 
	{
		
		var divHeight = div.offsetHeight;
	
		var txt = document.getElementById("text");
		if(txt) 
		{
			
			if(divHeight>400) txt.style.height = divHeight+400+"px";
				else txt.style.height = 800+"px";
		}
		
		if(divHeight > 275) 
		{
		
			divHeight += 35; 
			document.getElementById("opacity").style.height = divHeight + 'px';
	
		}
		else 
		{
		
			divHeight+= 350-divHeight; 
			document.getElementById("opacity").style.height = divHeight + 'px';
		}
		
		
		// ## POPUP FUNCTIONS
		// ### POPUP - check if intranet page is requested.. If true, do not viewpopup!
		var docTitle = document.title;
		if(docTitle.lastIndexOf("intranet")==-1&&docTitle.lastIndexOf("startdata")==-1) popupInit('popupContent',1);
		
	}
	
}

