/*
 * Client:		Faith in Action Evanston
 *
 * Language:	JavaScript
 *
 * Created by:	Dean Jensen
 * Created on:	23-OCTOBER-03
 * Modified on:	18-MARCH-04
 *
 * Description:	Calendar Control
 * 
 * Version:	1.1.0
 *
 * Copyright:	The contents of this file are protected under the United States
 *   			copyright laws as an unpublished work, and is confidential and
 *   			proprietary to Synergistic Networks, Inc.  Its use or disclosure in
 *   			whole or in part without the expressed written permission of
 *   			Synergistic Networks, Inc. is expressly prohibited.
 *
 *   			© Copyright 2003-2004 by Synergistic Netowrks, Inc. All rights reserved.
 */

// -------------------------------------------------------
// Open the month view popup window
// -------------------------------------------------------
	function calendar(sTxtBoxName, method)
	 {
		windowDatePicker = window.open("/controls/calendar/monthview_popup_" + method + ".aspx?txtbox=" + sTxtBoxName,"dp","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=200,height=185,left=375,top=200");
		windowDatePicker.focus();
	 }

// EOF