
function popup1(name,page,height,width)
{
  if( navigator.appName== 'Netscape')
    {
     open(page,name,"resizable=no,scrollbars=no,menubar=no,toolbar=no,location=no,status=no,height="+height+",width="+width+",screenY=50,screenX=200");
	}
  else
    {
     open(page,name,"resizable=no,scrollbars=no,menubar=no,toolbar=no,location=no,status=no,height="+height+",width="+width+",top=50,left=200");	
	}
}

function popup2(name,page,height,width,scrollbar)
{
  if( navigator.appName== 'Netscape')
    {
     open(page,name,"resizable=no,scrollbars="+scrollbar+",menubar=no,toolbar=no,location=no,status=no,height="+height+",width="+width+",screenY=50,screenX=200");
 	}
  else
    {
     open(page,name,"resizable=no,scrollbars="+scrollbar+",menubar=no,toolbar=no,location=no,status=no,height="+height+",width="+width+",top=50,left=200");
	}
}

function popup3(name,page,height,width,scrollbar,top,left)
{
  if( navigator.appName== 'Netscape')
    {
     open(page,name,"resizable=no,scrollbars="+scrollbar+",menubar=no,toolbar=no,location=no,status=no,height="+height+",width="+width+",screenY="+top+",screenX="+left);	
	}
  else
    {
     open(page,name,"resizable=no,scrollbars="+scrollbar+",menubar=no,toolbar=no,location=no,status=no,height="+height+",width="+width+",top="+top+",left="+left);
    }  
}


function refreshOpener()
  {
    window.opener.location.reload();
  }
