function showWOWHighlights() {	
	var HTMLstr = '<table class="f12" bgcolor="ffffff" cellspacing="0" cellpadding="0">';
	
	// Write first event
	HTMLstr += '<tr><td width="100%" colspan="2">';
	HTMLstr += '<a onclick="this.href = this.href + addParamsToURL(this.href);" href="http://www.whatsontheplanet.com/wow/ptnr/dealsonhotels/' + links[0] + '&hotel_loc_id=0">';	
	HTMLstr += '<img src="http://xml.whatsonwhen.com/img_sm/' + pics[0] + '" alt="" align="left" border="0" /><b>' + titles[0] + '</b></a>';
	HTMLstr += " " + dates[0] + '<br />' + locs[0] + '<br />' + texts[0];
	HTMLstr += '</td></tr>';
	
	// Cycle through remaining 4 events	
	HTMLstr += '<tr><td width="50%">' + '<br />';
	HTMLstr += minorEvent(1);
	HTMLstr += '<br /></td><td width="50%">';
	HTMLstr += minorEvent(2);
	HTMLstr += '<br /></td></tr>';
	
	HTMLstr += '<tr><td width="50%">';
	HTMLstr += minorEvent(3);
	HTMLstr += '</td><td width="50%">';
	HTMLstr += minorEvent(4);
	HTMLstr += '</td></tr>';
	
	HTMLstr += '</table>';

 
	document.write(HTMLstr);
}

function minorEvent(i) {
  var html = '<a onclick="this.href = this.href + addParamsToURL(this.href);" href="http://www.whatsontheplanet.com/wow/ptnr/dealsonhotels/' + links[i] +'&hotel_loc_id=0">' + titles[i] + '</a>';
	html +=  '<br />' + dates[i] + '<br />' + locs[i] + '<br />';
	return html; 
}



