function setContentDimensions (c,minW,minH)
{
	if ($(window).height()<minH)
	{
		c.height(minH);
	}
	else
	{
		c.height($(window).height());
	}
	
	if ($(window).width()<minW)
	{
		c.width(minW);
	}
	else
	{
		c.width($(window).width());
	}
}