// www.lastovo.net

var map1;

function showmap1()
{
map1 = window.open( "mapli.html", "", "top=60,left=60,width=720,height=328");
}

function hidemap1()
{
if( map1 != null ) map1.close();
}

window.onunload = hidemap1;
