function show(name,x,y){
		x = x + 20;
		y = y + 30;
		window.open(name,null,"width="+x+",height="+y+",status=no,toolbar=no,menubar=no,resizable=no,scrollbars=no");
}

Q=0;
function test()
{
if (Q==1) {A.style.top=122;}
ST=document.body.scrollTop;
HE=document.body.offsetHeight;
CH=document.body.scrollHeight;
NH=ST+HE;
PT=parseInt(A.style.top);
if (PT+192>CH)
	{
	A.style.top=CH-192;return false;
	}

A.style.top=ST;
Q=0;
}