function WinPopUp(Pagina,Largura,Altura,Nome)
	{
		var Propriedades

		Propriedades = 'scrollbars=no,width='+Largura+',height='+Altura+',left='+((screen.width/2)-(Largura/2))+',top='+((screen.height/2)-(Altura/2))
		Nome = window.open(Pagina,Nome,Propriedades);
		Nome.focus();
	}


function ViewDemo(e)
	{
		var Largura = 469;
		var Altura = 525;
		wDemo = window.open('/treino/demoexercicio/demo.asp?e=' + e,'wDemo','width=' + Largura + ',height=' + Altura + ',top=5,left='+((screen.width/2)-(Largura/2))+',scrollbars=no')
		wDemo.focus()
	}

  
