// open remote control window: NL
function openRemote(url,width,height,remote) 
{
    var properties = "scrollbars=no,resizable=no,top=0,left=0, innerWidth="+width+",innerHeight="+height+",width="+width+",height="+height;
    var remote = open(url, remote, properties);
    remote.opener.name = "myWindow";
}