function $(x)
{
return document.getElementById(x); 
}
function setActiveContentTab(num)
{
var i, c, d, s;
for(i=1; i<4; i++)
{
if(i==num) {d='block'; c='../sx.htm'; s='k-my/arrow_On.gif';}
else {d='none'; c='pointer'; s='k-my/arrow_Off.gif';}
$('hpNvBox'+i).style.display = d;
$('hpModHdr'+i).style.cursor = c;
$('hpNvArwImg'+i).src = s;
}
}