<!--//--><![CDATA[//><!--
// Javascript functions used by rad Window
function refreshParent() //To refresh the Parent Window
{
	this.window.location.href=this.window.location.href;
}
function refreshParent1() //To refresh the Parent Window
{
	this.window.location.href=this.window.location.href;
}

function ChangeLinkState(objTd, bolActivate)
{
    if(bolActivate)
    {
        objTd.setAttribute('previousCss', objTd.className);
        objTd.className = 'selected';
        objTd.style.cursor = 'hand';
    }
    else
    {
        objTd.className = objTd.getAttribute('previousCss', 0);
        objTd.style.cursor = 'default';
    }
}
//--><!]]>