<!--
function popper2(mylink,windowname,fromleft,fromtop,popwidth,popheight,common,IEprops,NSprops){
if(!window.focus) {return true}
var href;
var winStats;
if (navigator.appName.indexOf("Microsoft")>=0) {winStats='left='+fromleft+',top='+fromtop+',width='+popwidth+',height='+popheight+','+common+','+IEprops}
else {winStats='screenX='+fromleft+',screenY='+fromtop+',width='+popwidth+',height='+popheight+','+common+','+NSprops}
if(typeof(mylink)=='string') {href=mylink}
else {href=mylink.href}
window.open(href, windowname, winStats);return false;
}
//-->