// JavaScript Document
function popWina(url)
{
  if ((document.all) ||
      (document.layers))
    {
   var popWidth = 400;
   var popHeight = 411;
   var popLeft = 250;
   var popTop = 40;
 }
  
  if (document.all)
    {
   var remote = window.open(url,"popWina","width="+popWidth+",height="+popHeight+",left="+popLeft+",top="+popTop+",resizable=no,scrollbars=no,toolbars=no,status=no");
 }
 
 else if (document.layers)
    {
      var remote =
window.open(url,"popWina","width="+popWidth+",height="+popHeight+",screenX="+popLeft+",screenY="+popTop+",resizable=no,scrollbars=no,toolbars=no,status=no");
   remote.focus();
 }
 
  else if (window.open)
    {
       var remote = window.open(url,"popWina","width=400,height=411,resizable=no,scrollbars=no,toolbars=no,status=no");
   remote.focus();
 }
 
  else
    {
   window.top.location.href = url;
 }
}