function showAd(ImageUrl, ImageName, iWidth, iHeight,wmode1,wmode2)
{
	var str, pos;
	var strScript ;
	
	var strUrl ;
	strUrl = ImageName ;
	if(! ImageName)  strUrl = ImageUrl ;

	str = /.swf/;
	pos = strUrl.search(str);
	if (pos==-1)
	{
		strScript = '<a href="'+ImageUrl+'" target=_blank>';
		strScript += '<img src="' + strUrl +  '" height=' + iHeight + ' width=' + iWidth + ' border=0>' ;
		strScript +='</a>';
	}
	else
	{
		strScript='<embed src="'+strUrl+'" quality=high width='+ iWidth +' height='+  iHeight;
		if (wmode1 != '')
		{
		strScript +=' wmode='+wmode1
		}
		if (wmode2 != '')
		{
		strScript +=' wmode='+wmode2
		}
		strScript +='></embed>'
	}
	
	document.write(strScript);
}