// www.lastovo.net

var ljeto;
var tel;

function showsummer()
{
ljeto = window.open( "summer.html", "", "top=60,left=60,width=680,height=420");
}

function showphones()
{
tel = window.open( "phones.html", "", "top=20,left=20,width=800,height=600");
}

function hideall()
{
if( ljeto != null ) ljeto.close();
if( tel != null ) tel.close();
}

window.onunload = hideall;

