function gtrt() {
//gtrt(Go To Reserve Travel) links a single property to the booking engine
	window.location = 'http://www.reservetravel.com/v4/redir.aspx?siteid=' + arguments[0] +'&pid=' + arguments[1] + '&type=Property&'
}

function vahrt(){
	/*vahrt(View All Hotels Reserve Travel) links a city to all hotels in that city in the booking engine
	Quazi-overload case #1 accepts type, siteID, propertyID, city, country
	               case #2 accepts type, siteID, propertyID, city, country, state
	*/
	switch(arguments.length)
	{
		case 4:
			window.location = 'http://www.reservetravel.com/v4/redir.aspx?type=' + arguments[0] + '&siteid=' + arguments[1] + '&CI=' + arguments[2] + '&ct=' + arguments[3];
			break;
		case 5:
			window.location = 'http://www.reservetravel.com/v4/redir.aspx?type=' + arguments[0] + '&siteid=' + arguments[1] + '&ci=' + arguments[2] + '&ct=' + arguments[3] + '&st=' + arguments[4];
			break;
	}
}