function SetCurrent(obj,url)
{
	var oArrA = document.getElementsByTagName("A"); 
        var nCount = oArrA.length;
        for (var i = 0; i < nCount; ++i) 
        {
		if (oArrA[i].className == 'one') 
             	{
			oArrA[i].className='two';
             	}
        }
        obj.className="one";
	parent.test.location=url;
}