function popupWin(link,width,height) { 

   NewWindow=window.open(link,'newWin','width='+width+',height='+height+',toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No');
   NewWindow.focus();
   void(0);

}

