// JavaScript Document
var pg=null;

function open_win( URL ) {
	
    id = "pellicano_map";
	
	if ( pg == null || pg.closed ) {
		
    	eval("page" + id + " = window.open(URL,'" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,fullscreen=0,width=600,height=570');");
		
	} else {
		
		pg.location.href = URL;
		pg.focus();
		
	}
}