
function CV_Init(object_name, top, left, bottom, right)
{
	// Do nothing if the object doesn't exist
	var object = UTIL_GetElementById(object_name);
	if (!object)
	{
		return;
	}

	object.style.display	= "none";
	object.style.position	= "fixed";


	if (top != 0)
		object.style.top		= top + "px";

	if (left != 0)
		object.style.left		= left + "px";

	if (bottom != 0)
		object.style.bottom		= (bottom - 10) + "px";

	if (right != 0)
		object.style.right		= right + "px";

}

function CV_Show(object_name, show)
{
	// Do nothing if the object doesn't exist
	var object = UTIL_GetElementById(object_name);
	if (!object)
	{
		return;
	}

	if (show)
	{
		object.style.display	= "";
	}
	else
	{
		object.style.display	= "none";
	}
}