<!-- popup for articles -->


<!-- hide




function makeController(url) {
 var newWin = window.open(url,'popup','resizable=yes,scrollbars=yes,width=450,height=450,copyhistory=no')
 if (navigator.appVersion.indexOf('(X11') != -1 || navigator.appVersion.indexOf('(Mac') != -1)
  newWin =  window.open(url,'popup','resizable=yes,scrollbars=yes,width=450,height=450,copyhistory=no')

 if (newWin.open) newWin.focus();
}



function makeControllerSmall(url) {
 var newWin = window.open(url,'popup','resizable=yes,scrollbars=yes,width=400,height=300,copyhistory=no')
 if (navigator.appVersion.indexOf('(X11') != -1 || navigator.appVersion.indexOf('(Mac') != -1)
  newWin =  window.open(url,'popup','resizable=no,scrollbars=no,width=400,height=300,copyhistory=no')

 if (newWin.open) newWin.focus();
}



function makeControllerSearch(url) {
 var newWin = window.open(url,'popup','resizable=yes,scrollbars=yes,width=450,height=600,copyhistory=no')
 if (navigator.appVersion.indexOf('(X11') != -1 || navigator.appVersion.indexOf('(Mac') != -1)
  newWin =  window.open(url,'popup','resizable=yes,scrollbars=yes,width=450,height=600,copyhistory=no')

 if (newWin.open) newWin.focus();
}








// -->

