<!-- //
function chk(hotelid, cid){
	var url = "http://travel.ian.com/index.jsp?pageName=hotInfo&cid=" + cid + "&hotelID=" + hotelid + "&hotel=1";
	//window.open(url,'chkwin','');	
	document.location.href=url;
}

function book(hotelid, cid){
	var url = "http://travel.ian.com/index.jsp?pageName=hotInfo&cid=" + cid + "&hotelID=" + hotelid + "&hotel=1";
	//window.open(url,'bookwin','');	
	document.location.href=url;
}

function checkvals(){
	if (document.review.Review_Rating[0].checked == false && document.review.Review_Rating[1].checked == false && document.review.Review_Rating[2].checked == false && document.review.Review_Rating[3].checked == false && document.review.Review_Rating[4].checked == false){
		alert('Please select a rating for the hotel');
		return false;
	}
	if (document.review.Review_ByLine.value == ''){
		alert('Please enter a by line for the review in the box provided');
		return false;
	}
	if (document.review.Review_Contents.value == ''){
		alert('Please enter your review in the box provided');
		return false;
	}
	if (document.review.Review_GuestName.value == ''){
		alert('Please enter your name in the box provided');
		return false;
	}
	if (document.review.Review_GuestEmail.value == ''){
		alert('Please enter your email address in the box provided');
		return false;
	}
	return true;
}
//-->