function fnCallPressDetailsAction()
{
    document.frmMainBody.method="post";
    if(document.forms[1].drpdwnSelectYear.value == 0)
    {
        document.forms[1].drpdwnSelectYear.value ="2004";
    }

    if(document.location.href.indexOf("servlet") == -1)
    {
        document.frmMainBody.action = "http://www1.hannaford.com:9080/HBRWeb/servlet/HBRController";
    }
    else
    {
        document.frmMainBody.action = "http://www1.hannaford.com:9080/HBRWeb/servlet/HBRController";
    }
    document.frmMainBody.hidActionName.value =  "com.hannaford.action.DisplayPressReleaseDetailsAction";
    document.frmMainBody.submit();
}

function fnCallPressReleaseAction()
{
    if(document.location.href.indexOf("servlet") == -1)
    {
        document.frmMainBody.action = "../../../servlet/HBRController"
    }
    else
    {
        document.frmMainBody.action = "../servlet/HBRController"
    }
    document.frmMainBody.hidActionName.value =  "com.hannaford.action.DisplayPressReleaseDetailsAction";
    document.frmMainBody.submit();
}

function fnCallAction(index)
{
    if(document.location.href.indexOf("servlet") == -1)
    {
        document.frmMainBody.action = "../../../servlet/HBRController"
    }
    else
    {
        document.frmMainBody.action = "../servlet/HBRController"
    }
    document.frmMainBody.strIndex.value = index;
    document.frmMainBody.hidActionName.value =  "com.hannaford.action.DisplayPressReleaseContentsAction";
    document.frmMainBody.submit();
}