function changeImg(inImageUri, inLabel)
{
    document.getElementById('polaroidImg').src = inImageUri;
    document.getElementById('imageLabel').innerHTML = inLabel;
}

function changeValidityBox()
{
    var departure_select = document.getElementById('departure_city_select');
  
    if (!departure_select) 
	return;

    var i;
   
    // Hide Validity boxes 
    for (i = 0; i < departure_select.length; i++)
	document.getElementById(departure_select.options[i].value + 'Div').style.display = 'none';
    
    var selectedValue = departure_select.options[departure_select.selectedIndex].value;

    document.getElementById(selectedValue + 'Div').style.display = '';
}
function printWindow(id)
{
    // If more than one destination city is available for the promotion
	// Need to only print the price guide for the currently selected city 
    var city = '';
	var departure_select = document.getElementById('departure_city_select');
	
        if (departure_select) 
	    city = departure_select.options[departure_select.selectedIndex].value;
	
	var printUrl = "p_Holidays_" + id +  ".html?section=" + city;
 	var load     = window.open(printUrl, 
				   '',
				   'scrollbars=yes,menubar=yes,height=600,width=675,resizable=yes,toolbar=no,location=no,status=no');
}
