function setAvailabilityCriteria(shipId, guestCount, nights)
{
    if (document.getElementById('availabilityship')) {
        document.getElementById('availabilityship').value = shipId;
    }
    if (document.getElementById('availabilityguest')) {
        document.getElementById('availabilityguest').value = guestCount;
    }
    if (document.getElementById('availabilitynight')) {
        document.getElementById('availabilitynight').options[nights].selected = true;
    }
}

// google conversation tracking on reservation success page
function reservationtracking()
{
	var google_conversion_id = 1013199864;
	var google_conversion_language = "en";
	var google_conversion_format = "3";
	var google_conversion_color = "ffffff";
	var google_conversion_label = "V2kWCIjZsAIQ-OeQ4wM";
	var google_conversion_value = 0;
	
	$.getScript('http://www.googleadservices.com/pagead/conversion.js');
	
}
