<!--
function regwin(mylink, windowname, refocus)
{
var mywin, href;

if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
mywin = window.open('', windowname, 'width=535,height=400,top=25,left=25,resizable=yes,scrollbars=yes');
//mywin = window.open('', windowname);
//mywin = window.open('', windowname, 'resizable=yes,scrollbars=yes,status=yes');

// if we just opened the window
if (
   mywin.closed ||
   (! mywin.document.URL) ||
   (mywin.document.URL.indexOf("about") == 0)
   )
   mywin.location=href;
else if (refocus)
   mywin.focus();
return false;

}
//-->