/**
* redirect and return false (ie onclick event)
*
* @param	string sURL
*/
function bRedir (sURL)
{
    self.location.href = sURL;
    return false;
}

