var SmallWin;

function exp (imagem, w, h) { 
foto =  "netto/ima-" + imagem + 'g.jpg';
texto = "<img src=" + foto + ">";
com = "toolbar=no,directories=no,status=no,scrollbars=no,menubar=no,left=215,top=50, width="
+ w + ",height=" + h;

if (SmallWin && !SmallWin.closed)
   {SmallWin.close();}
SmallWin=window.open('','SmallWin', com ); 
SmallWin.document.write('<html>');
SmallWin.document.write('<title>Página do Gaúcho - Netto Perde Sua Alma</title>');
SmallWin.document.write('<body leftmargin="0" bgcolor=#B0FFB0 topmargin="0" marginwidth="0" marginheight="0">');
SmallWin.document.write('<DIV align=center>');
SmallWin.document.write(texto);
SmallWin.document.write('</body>');
SmallWin.document.write("</html>");
SmallWin.document.close();
SmallWin.window.focus() } 


function pagina(){
   if (document.form1.resposta.value.length == 0){
    alert("Preencha o campo RESPOSTA antes de prosseguir.")
    document.form1.resposta.focus();
    return false}
	
	if (document.form1.cidade.value.length == 0){
    alert("Preencha o campo CIDADE antes de prosseguir.")
    document.form1.cidade.focus();
    return false}

	if (document.form1.nome.value.length == 0){
    alert("Preencha o campo NOME antes de prosseguir.")
    document.form1.nome.focus();
    return false}

	if (document.form1.mail.value.length == 0){
    alert("Preencha o campo E-MAIL antes de prosseguir.")
    document.form1.mail.focus();
    return false}

	if (document.form1.telefone.value.length == 0){
    alert("Preencha o campo TELEFONE antes de prosseguir.")
    document.form1.telefone.focus();
    return false}
	
		}


