function activ(p){
   document.write(p);
}

var w = window;
function openWin(url) {
   if ((w == window) || w.closed) {
     w = open(url, "_blank", "width=560,height=400,scrollbars=yes");
   } else {
     w.focus();
   }
   return(false);
}
