

 Calendar.setup({
 
		dateStatusFunc : dateStatus,
        inputField     :    "f_date_e",     // id of the input field
        ifFormat       :    "%Y-%m-%d",     // format of the input field (even if hidden, this format will be honored)
        displayArea    :    "show_e",       // ID of the span where the date is to be shown
        daFormat       :    "%A, %B %d, %Y",// format of the displayed date
        button         :    "f_trigger_e",  // trigger button (well, IMG in our case)
		//position       :    [90,495],
		range          :    [2008,2008],
        singleClick    :    true,
                align          :    "Tl",           // alignment (defaults to "Bl")
        electric       :    false



    });
    
    
   Calendar.setup({
		dateStatusFunc : dateStatus,
        inputField     :    "f_date_e2",     // id of the input field
        ifFormat       :    "%m,%d,%Y",     // format of the input field (even if hidden, this format will be honored)
        displayArea    :    "show_e2",       // ID of the span where the date is to be shown
        daFormat       :    "%m-%d-%Y",// format of the displayed date
        button         :    "f_trigger_e2",  // trigger button (well, IMG in our case)
		position       :    [500,1100],
		range          :    [2008,2008],
        singleClick    :    true,
		align          :    "Tl",           // alignment (defaults to "Bl")    
		electric       :    false    
    }); 
        

    
