	function openNew(page,w,h)

	{

		var sb = 1;

		var r = 0;

		myRef = window.open(page,'mywin', 'left=100,top=20, width=' + w + ', height=' + h + ',status=0,toolbar=0,location=0,menubar=0,directories=0,scrollbars=' + sb + ',resizable=' + r);

		myRef.focus();

	}
	
	function openWebinar(webinarNum)
	{
		var page = "viewWebinar.php?webId=" + webinarNum;
		var w = "550";
		var h = "500";
		
		myRef = window.open(page,'mywin', 'left=100,top=20, width=' + w + ', height=' + h + ',status=0,toolbar=0,location=0,menubar=0,directories=0,scrollbars=1,resizable=0');

		myRef.focus();
	}

