
/*----------------------------------------------------------------------

		Created by:

		Nuno Coutinho <nuno.coutinho@studioboreas.com>

		in affilliation with proxima-si

------------------------------------------------------------------------*/
/*
function pop_window(url, _width, _height, _scroll) 
{
	var popit = window.open(url,'console','nomenubar,notoolbar,nolocation,nodirectories,nostatus,scrollbars=' +_scroll+ ',noresizable,width=' + _width + ',height=' + _height);
}
*/
function pop_window(url,_width,_height){
settings='width=' +_width+ ',height=' +_width+ ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=no,fullscreen=no'
Reserva=window.open(url,'Reserva', settings);
Reserva.focus();}
