function getHtml (name, swfW, swfH, bgColor, frameW, scaleMode) {

if (frameW==undefined) frameW = swfW;
if (scaleMode==undefined) scaleMode = "showAll";
var cacheBust = 1;

	var htmlText= "<html><head><title>"+ name +"</title><meta name='description' content='    '><meta name='keywords' content=''></head><frameset id='topframe' col='*' rows='40*,"+swfH+",100*' frameborder='0' border='0' framespacing='0' framepadding='0' bordercolor='#000000' cols='*'><frame src='nullFrame.html' name='lowerframe' marginwidth=0 scrolling='no' noresize frameborder='0' border='0' framespacing='0'><frame src='swfFrame.html?name="+ name+"&w="+swfW+"&h="+swfH+"&bgColor="+ bgColor+"&scaleMode="+ scaleMode+"&cacheBust="+ cacheBust+"' name='seasons' marginwidth=0 scrolling='no' noresize frameborder='0' border='0' framespacing='0'><frameset id='dock' rows='*' cols='*,"+ frameW +",*' frameborder='0' border='0' framespacing='0' framepadding='0' bordercolor='#000000' cols='*'><frame src='nullFrame.html' name='lowerframe' marginwidth=0 scrolling='no' noresize frameborder='0' border='0' framespacing='0'><frame src='dock.html' name='lowerframe' marginwidth=0 scrolling='no' noresize frameborder='0' border='0' framespacing='0'><frame src='nullFrame.html' name='lowerframe' marginwidth=0 scrolling='no' noresize frameborder='0' border='0' framespacing='0'></frameset></frameset></html>";

	return htmlText;
}

