/* This function is required for placing the banner in the popup screens */
function writeBannerHtml(movieName, width, height)
{
	/*
	totalMovieName = '/images/' + movieName + '.swf';
	
	if(width == undefined)
		width = '120';

	if(height == undefined)
		height = '600';

	retval = '';
	retval += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + width + '" height="' + height + '" align="middle">';
	retval += '<param name="allowScriptAccess" value="sameDomain" />';
	retval += '<param name="movie" value="' + totalMovieName + '" />';
	retval += '<param name="quality" value="high" />';
	retval += '<param name="bgcolor" value="#ffffff" />';
	retval += '<embed src="' + totalMovieName + '" quality="high" bgcolor="#ffffff" width="' + width + '" id="' + movieName + '" height="' + height + '" name="' + movieName + '" align="middle" allowScriptAccess="sameDomain" swLiveConnect="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
	
	document.write(retval);
	*/
}