//calendarios
var Checkin = new Object(); 
Checkin.format           = "ShortDate";
Checkin.style            = "Styles/Modern/Style.css";
Checkin.relativePathPart = "";
Checkin.themeVersion     = "3.0";

var Checkout = new Object(); 
Checkout.format           = "ShortDate";
Checkout.style            = "Styles/Modern/Style.css";
Checkout.relativePathPart = "";
Checkout.themeVersion     = "3.0";
	   
	   
	   
function addDays(firstDate, days, lastDate) {
SplitName = firstDate.value.split("/");
var a = new Date(SplitName[2], SplitName[0]-1, SplitName[1]);
//alert (a);
b=new Date(a.getTime() + (days*24*60*60*1000));
//alert (b);

//alert(b.getMonth()+ 1 + '/' + b.getDate() + '/' + b.getFullYear());


//document.gcr_may_aug.Checkout.value = b.getMonth()+ 1 + '/' + b.getDate() + '/' + b.getFullYear();
lastDate.value= b.getMonth()+ 1 + '/' + b.getDate() + '/' + b.getFullYear();
}	   
	   
//-->
