/******************************
**                            **
**                            **
**                            **
**                            **
*******************************/

function gotourl(strUrl)
{
    window.location.href = strUrl;
}


/******************************
**                            **
**                            **
**                            **
**                            **
*******************************/

function goback(strUrl)
{
    window.history.back();
}

/******************************
**                            **
**                            **
**                            **
**                            **
*******************************/

function openUrlInOpenerWindow(strUrl)
{
    window.opener.location.href = strUrl;
    this.close();
}