function addLoadEvent(func)
{
	var oldonload = window.onload;
	if(typeof window.onload != 'function')
	{
		window.onload = func;
	}
	else
	{
		window.onload = function()
		{
			oldonload();
			func();
		}
	}
}

function setSpace()
{
	if(!document.getElementById('leasing').checked)
	{
		document.getElementById('sjtpspace').style.position = 'absolute';
		document.getElementById('sjtpspace').style.left = '-999em';
		document.getElementById('sjtpspace').style.height = '0';
	}
	
	document.getElementById('leasing').onclick = function ()
	{
		if(document.getElementById('sjtpspace').style.left != '-999em')
		{
			document.getElementById('sjtpspace').style.position = 'absolute';
			document.getElementById('sjtpspace').style.left = '-999em';
			document.getElementById('sjtpspace').style.height = '0';
		}
		else
		{
			document.getElementById('sjtpspace').style.position = '';
			document.getElementById('sjtpspace').style.left = '';
			document.getElementById('sjtpspace').style.height = '';
		}
	}
}

addLoadEvent(setSpace);