
function Open_PopUp(url,name,width,height,top,left){
          if (top=='')
            top=0;
          if (left=='')
            left=0;

          if (width=='')
            width=470;
          if (height=='');
            height==463;


          var vWinNs = window.open(url,name,"width="+width+",height="+height+",status=yes,resizable=yes,toolbar=1,scrollbars=1,location=0,top="+top+",left="+left);
          vWinNs.opener = self;
}


function Open_PopUp_Simple(url,name,width,height,top,left){

          if (top=='')
            top=0;
          if (left=='')
            left=0;

          if (width=='')
            width=470;
          if (height=='');
            height==463;

          var vWinNs = window.open(url,name,"width="+width+",height="+height+",resizable=no,location=0,top="+top+",left="+left);
          vWinNs.opener = self;
}


function Resize_PopUp(width,height)
       {
         window.resizeTo(width,height);
        }

function close_PopUp(){
  window.close();
}


