function showFlashAd(iframe, link, image, alt, noflash, height, width) {
	if (checkPlugin("Flash")) {
		document.write("<iframe src=\""+iframe+"\" height=\""+height+"\" width=\""+width+"\" frameborder=0 marginheight=0 marginwidth=0 scrolling=\"no\">");
		document.write("<a href=\""+link+"\" target=\"_blank\">");
		document.write("<img src=\""+image+"\" alt=\""+alt+"\" width=\""+width+"\" height=\""+height+"\" border=0><\/a>");
		document.write("<\/iframe>");
	} else {
		document.write("<img src='"+noflash+"' border=0 alt='' \/>");
	}
}