
function getBannerStart(src, w, h, title, url, ext){
	h = h? "height='"+h+"'" : "";
	
	if(ext == ".swf"){
		document.write("<object style='position: absolute; z-index: 15;' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='"+w+"' "+h+" id='flash(5)' align='middle'>");
		document.write("<param name='allowScriptAccess' value='sameDomain' /><param name='movie' value='"+src+"' /><param name='quality' value='high' /><param name='bgcolor' value='#FFEFCF' />");
		document.write("<embed src='"+src+"' quality='high' bgcolor='#c6a47c' width='"+w+"' "+h+" name='flash(5)' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
		document.write("</object>");
	} else {
		if(url) {document.write("<a href='"+url+"' target='_blank' title='"+title+"'>");}
		document.write("<img style='position: absolute; z-index: 15;' src='"+src+"' alt='"+title+"' width='"+w+"' "+h+" border='0'>");
		if(url) {document.write("</a>");}
	}
}
	
	
function getBanner(src, w, h, title, url, ext){
	h = h? "height='"+h+"'" : "";
	
	if(ext == ".swf"){
		document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' width='"+w+"' "+h+" id='flash(5)' align='middle'>");
		document.write("<param name='allowScriptAccess' value='sameDomain' /><param name='movie' value='"+src+"' /><param name='quality' value='high' /><param name='bgcolor' value='#FFEFCF' />");
		document.write("<embed src='"+src+"' quality='high' bgcolor='#c6a47c' width='"+w+"' "+h+" name='flash(5)' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
		document.write("</object>");
	} else {
		if(url) {document.write("<a href='"+url+"' target='_blank' title='"+title+"'>");}
		document.write("<img src='"+src+"' alt='"+title+"' width='"+w+"' "+h+" border='0'>");
		if(url) {document.write("</a>");}
	}
}


