<!--
window.defaultStatus = "Espaço Virya - Yoga & ....";
document.oncontextmenu = new Function("return false");

function janela(url,nome,sb,w,h) {
atributos = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+sb+",resizable=no,width="+w+",height="+h;
win = window.open(url,nome,atributos);
var x = (win.screen.width-w)/2;
var y = (win.screen.height-h)/2;
win.moveTo(x,y);
}

function mapa() {
w = 500 + 10;
h = 520 + 10;
Win = window.open("","LOMapa","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+w+",height="+h);

Win.resizeTo(w,h);
var vx = (Win.screen.width-w)/2;
var vy = (Win.screen.height-h)/2;
Win.moveTo(vx,vy);
Win.document.open();
Win.document.write('<html><head><title>Universo Web</title></head><body bgcolor="#7B869A" topmargin="0" leftmargin="0" onload="self.print()">');
Win.document.write('<img src="img/mapa.gif">');
Win.document.write('</body></html>');
Win.document.close();
}
file://-->