function showDiv(div)
{
	$(div).style.display='block';
}

function hideDiv(div)
{
	$(div).style.display='none';
}
