function openPanorama(img, title){
    url="/compat/panorama.jsp?file="+img+"+&title="+title;
    openWindow(url,"popup",'width=500,height=400');
}


function openWindow(theURL,winName,features) { //v2.0
    newWindow=window.open(theURL,winName,features);
    newWindow.focus();
}
