function doThat(url)
{
	showModalDialog(url,0,"dialogWidth:500px;dialogHeight:390p")
}
function HideShow(that)
{
	if (that.style.display=='none')
	{
		that.style.display='block'
	}
	else
	{
		that.style.display='none'
	}
}
