/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var locID="350";
var simulationDateStart="";
var simulationDateEnd="";
var vetSprayDatesA = new Array();
var vetSprayDatesB = new Array(); // this array has the values for the destination list(if any)
    

function setSimulationDateStart(date) {
    //alert(date);
    simulationDateStart=date;
}
function setSimulationDateEnd(date) {
    //alert(date);
    simulationDateEnd=date;
}
function getCookieSprays() {
    vetSprayDatesA = new Array();
    vetSprayDatesB = new Array();
    vetSprayDatesA = getCookieSprayDates("A"); // get the values from cookies
    vetSprayDatesB = getCookieSprayDates("B");
}