<!--
function changeBackground(curr_id)
{
	document.getElementById(tmp_id).style.background='#FFFFFF';
	document.getElementById(curr_id).style.background='#ED3C13';
	tmp_id = curr_id;
}
function swapImage(id, p)
{
	document.getElementById(id).background = p;
}
function changeBGColor(id, p)
{
	document.getElementById(id).style.backgroundColor = '#'+p;
}
function changeStyle(td_id, a_id, p, the_class)
{
	document.getElementById(td_id).style.backgroundColor = '#'+p;
	document.getElementById(td_id).className = 'pf_interior'+the_class;
	document.getElementById(a_id).className = 'pf_interior_link'+the_class;
}
function mt(mailU, mailD)
{
	window.location="mailto:"+mailU+"@"+mailD;
}
//-->
