
var JCodCorretMapfre = "";
var	JNomeCorretor = "";
var	JSucursal = "";
var JEmailCorretor = "";
var JCapital = "";
var JComissao = "";

	function NaoECorretor()
	{
		 document.all( "DivECorretor" ).style.display = "none";
		 document.all( "BotNaoSouCorretor" ).src = "imagens/Bot_NaoSou_Corretor_Check.gif";
		 document.all( "BotSouCorretor" ).src = "imagens/Bot_Sou_Corretor_NaoCheck.gif";

		 JCodCorretMapfre = FormCotacao.FCodCorretMapfre.value;
		 JNomeCorretor = FormCotacao.FNomeCorretor.value;
		 JSucursal = FormCotacao.FSucursal.value;
		 JEmailCorretor = FormCotacao.FEmailCorretor.value;
         JCapital = FormCotacao.FCapital.value;
         JComissao = FormCotacao.FComissao.value; 

		 FormCotacao.FCodCorretMapfre.value = "0";
		 FormCotacao.FNomeCorretor.value = "-";
		 FormCotacao.FSucursal.value = "-";
		 FormCotacao.FEmailCorretor.value = "a@a.a";
         FormCotacao.FCapital.value = "-";
         FormCotacao.FComissao.value = "-";
	}

	function ECorretor()
	{
	   document.all( "DivECorretor" ).style.display = "";
		 document.all( "BotNaoSouCorretor" ).src = "imagens/Bot_NaoSou_Corretor_NaoCheck.gif";
		 document.all( "BotSouCorretor" ).src = "imagens/Bot_Sou_Corretor_Check.gif";

		 FormCotacao.FCodCorretMapfre.value = JCodCorretMapfre;
		 FormCotacao.FNomeCorretor.value = JNomeCorretor;
		 FormCotacao.FSucursal.value = JSucursal;
		 FormCotacao.FEmailCorretor.value = JEmailCorretor;

         FormCotacao.FCapital.value = JCapital;
         FormCotacao.FComissao.value = JComissao; 


	}


