function corner(x,y)
{
	return 'top:'+y+';left:'+x+';';
}

function rect(x,y,w,h)
{
	return corner(x,y)+'width:'+w+';height:'+h+";";
}