var TheRemote = null;
	function OpenRemote(page, w, h)
	{	
		TheRemote = window.open('', 'TheRemote','width=690,height=500,resizable=1,left=0,top=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,copyhistory=0');
		if (TheRemote != null)
		{
        	if (TheRemote.opener == null)
			{        
				TheRemote.opener = self;
			}
    		TheRemote.location.href = page;
		}
	}