﻿
function openLinkAndGoBack(thisLink)
{
    var myRef = window.open(thisLink, 'popUpWin', 'toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=1024,height=768,left=0, top=0');
    myRef.focus();
    history.back();
}		
