<!--
// Script programat per Estudi Vaque
// © Estudi Vaque, abril 2002
// restringeix les mides i centra col.locació de la finestra del navegador (provat amb IE i NS) -->

if (screen.width < 801) {
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}
var PosicioEsquerra = (screen.width) ? (screen.width-800)/2 : 0;
var PosicioDalt = (screen.height) ? (screen.height-640)/2 : 0;
if (screen.width > 800) {
self.moveTo((PosicioEsquerra),(PosicioDalt))
self.resizeTo(("800"),("600")) 
void(outerWidth=800);  
void(outerHeight=600);
}

window.onresize = function (evt) {
  if (screen.width > 800) {
self.moveTo((PosicioEsquerra),(PosicioDalt))
self.resizeTo(("800"),("600")) 
void(outerWidth=800);  
void(outerHeight=600);
}
}
