<!-- Hide from older browser
function launch(newURL, newName, newFeatures, orgName) {
	//alert ("You are here");
  	var remote = open(newURL, newName, newFeatures);
  	if (remote.opener == null) {
      	remote.opener = window;
  	} else {
  	}
  	return remote;
}
function open_popwin(httpstr,winname,he,wi) {
  	myRemote = launch(httpstr,winname,
               "height="+he+",width="+wi+",directories=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0",
               "ODC");
}
// -->

