function AbreResposta(blnVisivel) {
     var oDivPergunda=document.getElementById("divPergunta");
     var oDivResposta=document.getElementById("divResposta");
     if (blnVisivel) {
            oDivResposta.style.display='inline';
            oDivPergunda.style.display='none';
     }
     else
     {
            oDivResposta.style.display='none';
            oDivPergunda.style.display='inline';
      }
}

function PosicionaJanela(width,height) {
 window.resizeTo(width,height);
 window.moveTo((screen.availWidth-width)/2, (screen.availHeight-height)/2);
}

function AbreJanela(url) {
	jan = window.open(url,'_blank','resizable=yes,width=400,height=400');
	jan.document.write('<html><head><title>:: Visual Band ::</title></head>');
	jan.document.write('<body onload="window.resizeTo(imagem.clientWidth+10,imagem.clientHeight+30)" ');
	jan.document.write('leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" bgcolor="#ffffff">');
	jan.document.write('<img src="' + url + '" id="imagem" border=0></body></html>');
	jan.document.close();
	jan.focus();
}
