
function DisplayAds (position)
	/*
	Display ASHRAE banner ads
	*/

{

	var _version=11;
	if (navigator.userAgent.indexOf('Mozilla/3') != -1)
	{
		_version=10;
	}

	var oas='http://adserver.lanepress.com/RealMedia/ads/';
	var sitepage = "www.ashrae.org/TechnicalCommittee";
	var RN = new String (Math.random());
	var RNS = RN.substring (2, 11);
	var oaspage= sitepage + '/1' + RNS + '@' + position;

	if (_version < 11)
	{
		document.write ('<A HREF="' + oas + 'click_nx.cgi/'+ oaspage + '" TARGET="_top" ><IMG SRC="' + oas + 'adstream_nx.cgi/' + oaspage + '" BORDER="0"><\/a>');
	}
	else
	{
		document.write ('<SCRIPT LANGUAGE="JavaScript1.1" SRC="' + oas + 'adstream_jx.cgi/' + oaspage + '">');
		document.write ('\<\!-- --\>');
		document.write ('\<\/SCRIPT\>');
		document.write ('\<\!-- --\>');
	}
}

