function fnstrRetornaCabecalho()
{
 var strRetorno = "";

 strRetorno = '<table align=center width="80%"><tr><td><font face="Verdana" size=2 color="#555555"><b><br>';
 
 return strRetorno;
}

function fnstrRetornaRodape()
{
 var strRetorno = "";

 strRetorno = '</b></font></td></tr></table>';
 
 return strRetorno;
}

//recomenda-se por ser uma funcão antes do teste de plugin que o conteúdo seja texto puro
function fnstrRetornaTextoIntro()
{
 var strRetorno = "";
 
   strRetorno =	'Carregando...'

 return strRetorno;
}

function fnstrRetornaTextoEntrada()
{
 var strRetorno = "";
 
   strRetorno =	'<table width="100%"><tr><td align=center><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="'+ instclsConst.str_PathFlash + instclsConst.str_NomeFlashAutomatico +'#version='+ instclsConst.str_VersaoFlash +'" WIDTH=300 HEIGHT=200>' +
  							'<PARAM NAME=movie VALUE="carregando.swf">' +
  							'<PARAM NAME=quality VALUE=high>' +
  							'<PARAM NAME=bgcolor VALUE=#FFFFFF>' +
  							'<EMBED src="carregando.swf" quality=high bgcolor=#FFFFFF TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" WIDTH=300 HEIGHT=200></EMBED>' +
  							'</OBJECT></td></tr></table>';
 
 return strRetorno;
}

function fnstrRetornaTextoEmCurso()
{
 var strRetorno = "";
 
strRetorno =	strRetorno + '<table width="100%">'
strRetorno =	strRetorno + '<tr>'
strRetorno =	strRetorno + '<td align="center"><img src="imagens/abertura.jpg"></td>'
strRetorno =	strRetorno + '</tr>'
strRetorno =	strRetorno + '</table>'
	 
 //  strRetorno =	strRetorno + 'Atenção! Para o funcionamento correto do curso, não feche esta janela!';
 
 return strRetorno;
}

function fnstrRetornaTextoSaida()
{
 var strRetorno = "";
 
strRetorno =	strRetorno + '<table width="100%">'
strRetorno =	strRetorno + '<tr>'
strRetorno =	strRetorno + '<td align="center"><img src="imagens/fechamento.jpg"></td>'
strRetorno =	strRetorno + '</tr>'
strRetorno =	strRetorno + '</table>'
 
 return strRetorno;
}