function myWin(mypage,myname,w,h,scrol){
        LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
        TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
        settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scrol+',resizable';
        win = window.open(mypage,myname,settings);
	win.focus();

}
function catchExclusiveSurvey(e)
{
  //if (!document.getElementById || !document.createElement) return;
  if (!e) var obj = window.event.srcElement;
  else var obj = e.target;
  while (obj.nodeType != 1)
  {
    obj = obj.parentNode;
  }
  if (obj.tagName == 'A' && obj.className == popUpclassName) {
   outLink=obj.href;
   myWin(outLink,'PLalbani',638,330,0);
   return false;
  }
  else{
  return true;
  }
}
document.onclick = catchExclusiveSurvey;