function showhide(id)
{
	if (document.getElementById(id).style.display == 'inline')
	{
		document.getElementById(id).style.display = 'none';
	}
	else
	{
		document.getElementById(id).style.display = 'inline';
	}	
}
function CF_RunContent(src){document.write(src);}