function adjustLayout()
{
	var cHeight = xHeight("center");
	var lHeight = xHeight("left_site")+100;
	var ldHeight = xHeight("left_default")+100;
	var rHeight = xHeight("right_site")+100;
	var rdHeight = xHeight("right_default")+100;
	
	//alert(cHeight+" "+lHeight+" "+rHeight);
	
	var maxHeight = Math.max(cHeight, Math.max(Math.max(lHeight, rHeight), Math.max(ldHeight, rdHeight)));
	
	xHeight("center", maxHeight);
	//xHeight("right_site", maxHeight);
	//xHeight("left_site", maxHeight);
	
	xShow("footer");
}

function InsertMail(mailnam,mailsvr,maildom,text)
{
  if(text=="")
    document.write('<a href="mailto:'+mailnam+'@'+mailsvr+'.'+maildom+'">'+mailnam+'@'+mailsvr+'.'+maildom+'</a>');
  else
    document.write('<a href="mailto:'+mailnam+'@'+mailsvr+'.'+maildom+'">'+text+'</a>');
}
