//<!--
function popOut(id,state)
{
	document.getElementById(id).style.visibility = 'visible';
	switch(state)
	{
		case 'visible':
		document.getElementById(id).style.zIndex = '2';
		break;
		case 'hidden':
	document.getElementById(id).style.zIndex = '-1000';
	}		

}
//-->
