function getDocumentHeight()
{
	return (document.body.scrollHeight > document.body.offsetHeight)?document.body.scrollHeight:document.body.offsetHeight;
}

function empty(a)
{
	return a == null || a == undefined || a == '' || a == 0 || a == false; 
}
