if (parent.frames.length > 0)
{
    parent.location.href = self.document.location
}

function lightup(imgName,imgsrc)
{
	imgName.src=imgsrc.src;
    imgName.style.cursor='hand';
}

function tOverHiLite(obj)
{
	obj.style.backgroundColor = 'MediumBlue'
	obj.style.color='White'
	obj.style.cursor = 'hand'
}

function tOutHiLite(obj)
{
	obj.style.backgroundColor = '#000055'
	obj.style.color='Yellow'
	obj.style.cursor = 'pointer'
}