// JavaScript Document
<!--
<!-- Begin
today = new Date();
thismonth = today.getUTCMonth()+1;
thisyear = today.getFullYear();
thisday = today.getDate();
tomorrow = today.getDate()+1;
montharray=new Array(31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
maxdays=montharray[thismonth-1];
maxMonths=12;
if (thismonth==2) {
	if ((thisyear/4)!=parseInt(thisyear/4)) maxdays=28;
	else maxdays=29;
	}
		thismonth = "" + thismonth
		if (thismonth.length == 1) {
		thismonth = "0" + thismonth;
}

function newLocation() {
	if (document.form1.city.value == "Choose city"){
		alert('Please choose a city');
	} else {
		
		window.open ("http://sas.radisson.com/reservation/itineraryEntrance.do?rmcCode=" +
		"&startDate=" + thisyear + document.form1.checkinMonth.value /*20070629*/ + document.form1.checkinDay.value +
		"&numberChildren=" + document.form1.numberChildren.value +
		"iata=45339660"+
		"&a_month_year=" /*200706*/ + thisyear + document.form1.checkinMonth.value +  
		"&language=no" +
		"&numberAdults=" + document.form1.adults.value +
		"hotelCode=&country=&promotionalCode=&paclink=Y&ref=/reservation/itineraryEntrance.do" +
		"&a_date=" + document.form1.checkinDay.value +
		"&endDate=" + thisyear + document.form1.checkoutMonth.value /*20070629*/ + document.form1.checkoutDay.value +
		"&d_date=" /*29*/ + document.form1.checkoutDay.value +
		"&city=" + document.form1.city.value +
		"&d_month_year=" + thisyear + document.form1.checkoutMonth.value +/*200706 */
		"&csref=book_nordics_concierge");
	}
}

function over() {
	document.getElementById("submit").src='http://www.cphz4.com/banner/66818/img/submit_on.png';
}

function out() {
	document.getElementById("submit").src='http://www.cphz4.com/banner/66818/img/submit.png';
}
// End -->
