// JavaScript Document

function addtovalues(order)
{

var strall;
var sendtype;
// Check for input in both the month and year fields

	  sendtype = "";
	  strall = "";
	  sendtype = order.type.value;
	  strall = "category : "+order.category.value+"<br>\n Hotel : "+order.hotel.value+"<br>\n Address: "+order.address.value+"<br>\n Room Type :"+order.roomtype.options.value +"<br>\n   Arrival Date: "+order.chmonth.options.value +" / "+order.chday.options.value+" / "+order.chyear.options.value+"<br>\n No. of Nights : "+order.numbernights.options.value+"<br>\n No. of Rooms : "+order.numberroom.options.value+"<br>\n Adults : "+order.adults.options.value+"<br>\n Children : "+order.children.options.value;
								  
 	AddToCart(sendtype,strall);

								  
}