function launch(newURL, newName, newFeatures) {
	var remote = open(newURL, newName, newFeatures);	
	return remote;
}
function popuplaunch(theURL,theNAME,theWIDTH,theHEIGHT) {
	launch(theURL, theNAME, "width="+theWIDTH+" ,height="+theHEIGHT+" ,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0,title=0");
}
function popuplaunch2(theURL,theNAME,theWIDTH,theHEIGHT) {
	launch(theURL, theNAME, "width="+theWIDTH+" ,height="+theHEIGHT+" ,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolbar=0,title=0");
}
function popupexhibitorlaunch(theURL,theNAME,theWIDTH,theHEIGHT) {
	var popup = launch(theURL, theNAME, "width="+theWIDTH+" ,height="+theHEIGHT+" ,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0,title=0");
	popup.focus();
}