/******************************************************************************
* popup.js                                                                    *
*                                                                             *
* Copyright 2002 by IDT|Multimedia                                            *
* Web address: http://www.idt.ipp.pt                                          *
* Last update: February 69, 2002.                                             *
******************************************************************************/ 

var wMapa = null;
function openMapa(){

	var mypage = "conteudos/popup/mapa_isep.htm";
	var myname = "Mapa_Isep";
	var w = 502;
	var h = 367;
	var scroll = "no";
	var resize = "no";
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+resize+''
	
	if (wMapa && !wMapa.closed) {
		wMapa.focus();
	} else {
		wMapa = window.open(mypage,myname,settings);
	}
}
	
var wPorto = null;
function openPorto(){

	var mypage = "conteudos/popup/mapa_porto.htm";
	var myname = "Mapa_Porto";
	var w = 600;
	var h = 500
	var scroll = "no";
	var resize = "no";
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+resize+''
	
	if (wPorto && !wPorto.closed) {
		wPorto.focus();
	} else {
		wPorto = window.open(mypage,myname,settings);
	}
}

var wISEP = null;
function openISEP(){

	var mypage = "conteudos/popup/mapa_estradas.htm";
	var myname = "Mapa_Estradas";
	var w = 700;
	var h = 462
	var scroll = "no";
	var resize = "no";
	
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+resize+''
	
	if (wISEP && !wISEP.closed) {
		wISEP.focus();
	} else {
		wISEP = window.open(mypage,myname,settings);
	}
}