function reopenMe(href) {
  remote = window.open(href,null,"width=600,height=500,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,screenX=50,left=50,screenY=50,top=50");
  remote.focus();
}

function reopenMe(href, name) {
  remote = window.open(href,name,"width=600,height=500,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,screenX=50,left=50,screenY=50,top=50");
  remote.focus();
}


