
var gAdServer = 'adserver.infomediatechnologies.com'

function ad(adKey,width,height)
{
	//this function retunrs a div with the adserver calls for group adverts
	var strDiv
	var tmpWidth
	var tmpHeight
	
		if (typeof width == "undefined")
		{
			tmpWidth = 
			width = ''
		}
		
		if (typeof height == "undefined")
		{
			height = ''
		}
			
		strDiv = '<a href="http://' + gAdServer
		strDiv = strDiv + '/t/gl/k/' + adKey
		strDiv = strDiv + '" ><img src="http://' + gAdServer
		strDiv = strDiv + '/t/'
		strDiv = strDiv + 'wb'
		strDiv = strDiv + '/k/' + adKey
		strDiv = strDiv + '" alt="' + adKey 
		strDiv = strDiv + '" /></a>' 


			
		document.write(strDiv);
}
	
function adold(adKey,width,height)
{
	//this function retunrs a div with the adserver calls for group adverts
	var strDiv
	var tmpWidth
	var tmpHeight
	
		if (typeof width == "undefined")
		{
			tmpWidth = 
			width = ''
		}
		
		if (typeof height == "undefined")
		{
			height = ''
		}
			
		strDiv = '<a href="http://' + gAdServer
		strDiv = strDiv + '/t/gl/k/' + adKey
		strDiv = strDiv + '" ><img src="http://' + gAdServer
		strDiv = strDiv + '/t/'
		if (width.length != 0 )
		{
			strDiv = strDiv + 'wb/w/' + width
		}	
		else
		{
			strDiv = strDiv + 'wb'
		}	 	
		strDiv = strDiv + '/k/' + adKey
		strDiv = strDiv + '" alt="' + adKey 
		if (width.length != 0 )
		{
			strDiv = strDiv + '" width="' + width
		}
		if (height.length != 0 )
		{
			strDiv = strDiv + '" height="' + height
		}
		strDiv = strDiv + '" /></a>' 


			
		document.write(strDiv);
}

