// JavaScript Document
			function Focus(on) {
			document.getElementById(on).focus();
			}
			function LoadForm(stringGet) {
			LoadBodyGray();
			document.pesquisarDocumento.action = stringGet
			document.pesquisarDocumento.target = '_self';
			document.pesquisarDocumento.submit();		
			}
			function LoadFormDownload(stringGet) {
			document.pesquisarDocumento.action = stringGet
			document.pesquisarDocumento.target = '_self';
			document.pesquisarDocumento.submit();		
			}			
			function LoadFormBlank(stringGet) {
			document.pesquisarDocumento.action = stringGet
			document.pesquisarDocumento.target = '_blank';
			document.pesquisarDocumento.submit()
			}
			function Style(div,classe) {
			document.getElementById(div).className=classe;
			}
			function Display(on) {
			document.getElementById(on).style.display = document.getElementById(on).style.display == 'none' ? 'block' : 'none';
			}
			function DisplayN(on) {
			document.getElementById(on).style.display = 'none';
			}
			function DisplayB(on) {
			document.getElementById(on).style.display = 'block';
			}
			function LoadSrc(on, url) {
			document.getElementById(on).src = url;
			}
			function LoadDate(on, url) {
			document.getElementById(on).value = url;
			}
			function LoadHidden(on) {
			document.getElementById(on).value = document.getElementById(on).value == 'none' ? 'block' : 'none';
			}
			function LoadN(on) {
			document.getElementById(on).value = 'none';
			}
			function LoadB(on) {
			document.getElementById(on).value = 'block';
			}
			function LoadName(onid, on) {
			document.getElementById(onid).name = on;
			}
			function LoadHtml(onid, on) {
			document.getElementById(onid).innerHTML = on;
			}
			function LoadMaisHtml(onid, on) {
			document.getElementById(onid).innerHTML += on;
			}
			function LoadIframe(stringGet, on) {
			document.pesquisarDocumento.action = stringGet;
			document.pesquisarDocumento.target = on;
			document.pesquisarDocumento.submit(); 
			}