
function OpenSchedule(url) {
	var w = 785;
	var h = 610;

	var nw = w + 32;
	var nh = h + 96;

	var l = Math.round((screen.width - w) / 2);
	var t = Math.round((screen.height - h) / 2);

	myWin = window.open(url, 'scheduleWin', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+w+',height='+h+',left='+l+',top'+t);
}

