
// JavaScript Document

var NS=0;        // Netscape 4.x
var IE=0;        // IE
var IE6=0;	 // Netscape 6.x
var FF=0;

Ypos = 0;
Xpos = 0;

lastEvWindow = 0;

document.onmousemove = MoveHandler
if (NS) document.captureEvents(Event.MOUSEMOVE)

function MoveHandler (e) {
  self.status = 'Universidade São Judas Tadeu';

  if (NS) {
    Xpos = e.pageX;
    Ypos = e.pageY;

    clientHeight = document.innerHeight;
  }

  if (IE) {
    Xpos = (window.event.x + document.body.scrollLeft) - 90;
    Ypos = window.event.y + document.body.scrollTop;
  }
}

//---------------------------------------------------------------------------------
//  Funcao para abrir uma janela


function AbreJanela (URL, x, y, nome, scroll)
{
  if (nome=='') nome='_blank';

  if (x == '1') {
    tamanho="";
  } else if (x=='') {
    tamanho="width=" + (screen.availWidth-10) + ",innerWidth=" + (screen.availWidth-10) + ",height=" + (screen.availHeight-50) + ",innerHeight=" + (screen.availHeight-50) + ",top=0,left=0,scrollbars=yes";
  } else {
    tamanho="width=" + x + ",innerWidth=" + x + ",height=" + y + ",innerHeight=" + y;
    if (scroll) tamanho+=",scrollbars=yes";
  }
}


