function float_window_contacts () {
cWidth=document.body.clientWidth;
cHeight=document.body.clientHeight;
sTop=document.body.scrollTop;
with(document.getElementById('contacts'))
	{width=404;
	 height=410;
	 style.visibility='visible';
	 style.left=(cWidth-width)/2;
	 style.top=((cHeight-height)/2)+sTop;
	}
}

function float_window_contacts_ok () {
cWidth=document.body.clientWidth;
cHeight=document.body.clientHeight;
sTop=document.body.scrollTop;
with(document.getElementById('contacts_ok'))
	{width=404;
	 height=410;
	 style.visibility='visible';
	 style.left=(cWidth-width)/2;
	 style.top=((cHeight-height)/2)+sTop;
	}
}
