// www.lastovo.net

var map1;
var map2;
var map3;
var park1;
var park2;
var park3;

function showmap1()
{
map1 = window.open( "mapcro.html", "", "top=60,left=60,width=460,height=487");
}

function showmap2()
{
map2 = window.open( "europe.html", "", "top=60,left=60,width=480,height=356");
}

function showmap3()
{
map3 = window.open( "mapst.html", "", "top=60,left=60,width=397,height=547");
}

function showpark1()
{
park1 = window.open( "parkeng.html", "", "top=10,left=10,width=1230,height=759");
}

function showpark2()
{
park2 = window.open( "parkit.html", "", "top=10,left=10,width=1230,height=759");
}

function showpark3()
{
park3 = window.open( "parkcro.html", "", "top=10,left=10,width=1230,height=759");
}

function hideall()
{
if( map1 != null ) map1.close();
if( map2 != null ) map2.close();
if( map3 != null ) map3.close();
if( park1 != null ) park1.close();
if( park2 != null ) park2.close();
if( park3 != null ) park3.close();
}

window.onunload = hideall;
