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