function popup(id)
{
	document.getElementById(id).className='show';
}

function unpop(id)
{
	document.getElementById(id).className='';
}
