function displayflash(swffile,link,window,width,height)
{
	if(swffile)
	{
		if(link)
		{
			if(link.substr(0,7)!='http://')
			{
				link='http://'+link;
			}
			link=link.replace('?','%3F');
			link=link.replace('=','%3D');
			link=link.replace('&','%26');
			swffile=swffile+'?clicktag='+link;
		}
		if(window)
		{
			swffile=swffile+'&target='+window;
		}
		if(!width)
		{
			width=468;
		}
		if(!height)
		{
			height=60;
		}
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,2,0" width="'+width+'" height="'+height+'" align="top"><param name=movie value="'+swffile+'"><param name=quality value=high><param name=menu value=false><param name=wmode value=transparent><embed src="'+swffile+'" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" menu="false" wmode="transparent" align="top"></embed></object>');
	}
}

function display(swffile,width,height)
{
	if(!width)
	{
		width=468;
	}
	if(!height)
	{
		height=60;
	}
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,2,0" width="'+width+'" height="'+height+'" align="top"><param name=movie value="'+swffile+'"><param name=quality value=high><param name=menu value=false><param name=wmode value=transparent><embed src="'+swffile+'" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" menu="false" wmode="transparent" align="top"></embed></object>');
}