function openWebConference(url) {
	var windowName = "RCPresenterPlayer";
	var width = 780;
	var height = 513;
	var resizable = 0;
	var scrollbars = 0;
	var toolbar = 0;
	
	openWindow(url, windowName, width, height, resizable, scrollbars, toolbar);
}