/**
 * @author	PTsniper
 * @url		http://www.ptsniper.com
 */

      function testeonlineexemplo() {
        if (window.screen.width < 700 && window.screen.height < 500) {
            var xleft = 0;
            var ytop = 0;
        } else {
            var xleft = (window.screen.width - 700) / 2;
            var ytop = 25;
        }
        tipo = document.frmTesteOnline.tipoAvaliacao.value;
        window.open('http://aprenderaconduzir.com/exemplo_testecarregar.asp?tipo=' + tipo,'testeonline','menubar=no,scrollbars=no,toolbar=no,status=no,width=700,height=500,left=' + xleft + ',top=' + ytop + '');
    }
