
// array of languages that have custom ad
var customLangs=new Array("xx");

function displayAd()	{
	// if language belongs to customLangs display lanx-xx.jpg
	if (customLangs.indexOf(language) != -1)	{
		document.write("<!-- Win on Windows Ad --> \
							<a href=\"http://www.axigen.com/mail-server/business/\" target=\"_self\" title=\"Download to win a free Axigen license.\"> \
								<img src=\"/img/ads/win-windows/lang-" + language + ".jpg\" alt=\"download your copy of axigen for windows now to win a free license!\"> \
							</a> \
						<!-- END Win on Windows Ad -->");
	}
	// else display the default.jpg english ad.
	else	{
		document.write("<!-- Win on Windows Ad --> \
							<a href=\"http://www.axigen.com/mail-server/business/\" target=\"_self\" title=\"Download to win a free Axigen license.\"> \
								<img src=\"/img/ads/win-windows/default.jpg\" alt=\"download your copy of axigen for windows now to win a free license!\"> \
							</a> \
						<!-- END Win on Windows Ad -->");
	}
}