function getposition(y, obj, winwidth, winheight)
{
	//obj.style.left = event.clientX - 50 + window.document.body.scrollLeft;
	//obj.style.left = event.clientX - 50;
	obj.style.width = winwidth;
	obj.style.height = winheight;
	//if( y < 180 )
		//obj.style.top = event.clientY + 50 + window.document.body.scrollTop;
		//obj.style.top = event.clientY + 50 ;
	//else
		//obj.style.top = event.clientY - 200 + window.document.body.scrollTop;
		//obj.style.top = event.clientY - 100 ;
}

