function getchat()
{
	if(document.getElementById('chat') && document.getElementById('hchat'))
	{
		document.getElementById('chat').innerHTML = document.getElementById('hchat').innerHTML;
		document.getElementById('hchat').innerHTML = '';
	}
}

function loadbanners_home()
	{
		bannercounter = 0;
		
		while(bannercounter != 'halt_home')
		{
			if(document.getElementById('banner_home' + bannercounter) && document.getElementById('hbanner_home' + bannercounter))
			{
                document.getElementById('banner_home' + bannercounter).innerHTML = document.getElementById('hbanner_home' + bannercounter).innerHTML;
                document.getElementById('hbanner_home' + bannercounter).innerHTML = '';
				bannercounter++;
			}
			else
			{
				bannercounter = 'halt_home';
			}
		}
	}
function show_privacy()
{
  privacy=window.open('/privacy/privacy/','privacy','channelmode=0,directories=0,fullscreen=0,height=700,left='+((screen.availWidth/2)-300)+',location=0,menubar=0,resizable=0,scrollbars=1,status=1,titlebar=1,toolbar=0,top=100,width=600');
}
