
function backLink.onclick() {
    if (history.length > 0) {
       history.go(-1);
       event.returnValue = false;    
    }
}
