// JavaScript Document

  var Fwinow = null;
  var linkpath =null;
    function launchWindow(linkpath)
         {
         szoptions = 'width=560, height=700, resizable=1, scrollbars=1, left=200, top=100';
         Fwindow = window.open('', 'YourRemote', szoptions);
         if(Fwindow != null)
            {
            if(Fwindow.opener == null) 
                {
                Fwindow.opener = self;
                };
            Fwindow.location.href = linkpath;
            };
     }
	 