function launch(newURL, newName, newFeatures, orgName) 
	{
	var remote = open(newURL,newName,newFeatures);
	if (!(navigator.userAgent.indexOf("MSIE 3.0") != -1)) remote.focus();

	if (remote.opener == null)
		{
		remote.opener = window;
		remote.opener.name = orgName;
		}
	return remote;
	}


function launchRemote(page) {
	myRemote = launch(page,"myRemote","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0,width=622,height=440","myWindow");
        }

