<!--
function displayHotSpecials(obj, start, num)
{
    if(document.getElementById(obj)){
	    if( typeof hot_specials != "undefined" && hot_specials.length > start )
	    {   // hot_specials array has been populated
		var html_output = "";
		for( i=start; (i<(num +start) && i<hot_specials.length); i++ )
		{
		    var special_id = hot_specials[i][0];
		    var special_header = hot_specials[i][1];
		    var special_brief = hot_specials[i][2];
		    var special_url = hot_specials[i][3];
		    var img_url = hot_specials[i][4];
		    // change the HTML below to suite your needs
		    //img_tag = (img_url!="") ? '<img src="' +img_url+ '" align="center"  style="padding-right:3px" />' : '';
		   
		    html_output+= '<p>' 
			+ '<a href="index.cgi?E=lmcmastframe&sitecode=TTS&siteregion=cruise&frame_width=800&load_this_url=' +special_url+ '">' 
			+ special_header + '</a>'
			+ '<br>' + special_brief+ '</p>';
		}
		    html_output+= '<br>' 
		
		document.getElementById(obj).innerHTML += html_output;
	    }
    }
}

// call display function when page has completed loading...
//window.onload = function() {
try{
	prefillDestinationId();}
catch(e){}

displayHotSpecials("cruise1",0,2);
displayHotSpecials("cruise2",2,2);
displayHotSpecials("cruise3",4,2);
    

    // put more function calls here if required
//}


-->

