<!--

function launch(newURL, newName, newFeatures, orgName) 
	{
        	var remote = open(newURL, newName, newFeatures);
        	if (remote.opener == null)
                	remote.opener = window;
        	remote.opener.name = orgName;
        	return remote;
	}

function launchRemoter(place, w, h)
	{
       	//myRemote = launch(place, "hello","height=370,width=280");
		//myRemote = launch(place, "hello","height="+h+",width="+w+");
		myRemote = launch(place, "hello","height="+h+",width="+w+",scrollbars=yes");
	}

//-->
