function float_window () {
cWidth=document.body.clientWidth;
cHeight=document.body.clientHeight;
sTop=document.body.scrollTop;
with(document.getElementById('contacts'))
	{width=622;
	 height=391;
	 style.visibility='visible';
	 style.left=(cWidth-622)/2;
	 style.top=((cHeight-391)/2)+sTop;
	}
}
