function popup(url, width, height)
{
    window.open(url, "new_win", "width="+width+",height="+height+",resizable=yes")
}

function OpenWin(url, w, h)
{
    new_window = window.open(url,'myWindow', 'toolbar=no,width='+w+',height='+h+
                'top=10,left=5,directories=yes,status=yes,name=yes,scrollbars=no'+
                ',resizable=1,resize=yes,menubar=no');
    new_window.focus();
}


// functions for virtual tour
function showPano(filename,mapid)
{
    var swidth = screen.width
    var widthleft = swidth - 350

    var win = window.open('http://www.maxvr.com/tourism_vancouver/panoviewer2_tv.asp?pic=' + filename + '&p=' + mapid,'TransInfo','height=520,width=340,menubar=no,resizable=yes,top=5,scrollbars=no,left=' + widthleft);
    win.focus();
}

function showCityPano(searchField, searchString)
{
    var swidth = screen.width
    var widthleft = swidth - 355
    var win = window.open('http://www.maxvr.com/tourism_vancouver/cityviewer_tv.asp?searchString=' + searchString + '&searchField=' + searchField,'TransInfo','height=520,width=340,menubar=no,resizable=yes,top=5,scrollbars=no,left=' + widthleft);
    win.focus();
}

// function for navigation on Videos page
//function goto_URL(object) 
//{     
//	frames['nav'].location.href = object.options[object.selectedIndex].value;  
//} 


function goto_URL(object) {
    window.location.href = object.options[object.selectedIndex].value;
}



