/*
*
*/
function showOverlay(type, id)
{
	if(id != 0)
	{
		if(type == 'in')
			document.getElementById('vac'+id).style.display = 'block';
		else if(type == 'out')
			document.getElementById('vac'+id).style.display = 'none';
	}
	
	return false;
}
