function openWindow(aOb,width,height) {
var url = aOb.getAttribute('href');
width = width?width:400;
height = height?height:400;
var left = parseInt((screen.width - width)/2);
var top = parseInt((screen.height - height)/2);
var dsdWindow = window.open('','','left='+left+',top='+top+',width='+width+',height='+height+', toolbar=0, location=0, scrollbars=0, menubar=0, status=0');
dsdWindow.document.write("<html><head><title>Trawa</title></head><body><center><img src=" + url + "></center></body></html>");
return false;
}

function openWindowMap(aOb,width,height) {
var url = aOb.getAttribute('href');
width = width?width:590;
height = height?height:810;
var left = parseInt((screen.width - width)/2);
var top = parseInt((screen.height - height)/2);
var dsdWindow = window.open('','','left='+left+',top='+top+',width='+width+',height='+height+', toolbar=0, location=0, scrollbars=0, menubar=0, status=0');
dsdWindow.document.write("<html><head><title>Trawa</title></head><body><center><img src=" + url + "></center></body></html>");
return false;
}
