function mainRestaurantBalloon(restName,addr2,addr4,postCode, tel, url ) {

var theString = "<h5>" + restName + "</h5>" + addr2 + ", " + addr4 + "<br>" + postCode + "<br>"
		+ "<img src=\"/images/telephone.gif\" alt=\"" + restName + " telephone number\"> Tel: ";

	if (tel == "") {
		theString = theString + "Please order online<br><br>"
			+ "<div>"
			+ "	<div>You can view the online menu of " + restName + " by clicking on the button: </div>"
			+ "	<div><a href=\"http://scripts.affiliatefuture.com/AFClick.asp?affiliateID=244427&amp;merchantID=4668&amp;programmeID=12061&amp;mediaID=97050&amp;tracking=button&amp;url=" + url + "/menu\" rel=\"nofollow\"><img src=\"/images/menu.png\" alt=\"" + restName + " menu\" border=\"0\"></a>"
			+ "	</div>"
			+ "</div>";
	} else {
		theString = theString + tel;
	}

	return theString;
}

function simpleBalloon(restName, ID) {
	var theString = "<h5>" + restName + "</h5> <a href=\"http://www.prawncrackers.co.uk/restaurantdetails.php/" + restName + "/" + ID + "\""
				+ " title=\"" + restName + " - More Details\">Click<a/> for more details";

	return theString;
}

