function openTafWindow(theURL,winName,features) {
var mLoc=window.location.href;var dTitle=document.title;
dTitle=escape(dTitle);mLoc=escape(mLoc);
var mST=(theURL.indexOf('?')!=-1)?'&fr=':'?fr=';
theURL=theURL+mST+mLoc +'&dt='+dTitle;
var myWin=window.open(theURL,winName,features);
myWin.focus();
}