function create_window(picNum, width, height) {

if(picNum < 10) {picNum = "0" + picNum;}

width = width + 40;
height = height + 40;

if (window.popup_window && !window.popup_window.closed) { window.popup_window.resizeTo (width, height); }

var window_specs = "location=no, scrollbars = no, menubars=no, toolbars=no, resizable=yes, left=0, top=0, width=" + width + ", height=" + height;

var url = "images/gallery/large/pic-" + picNum + ".jpg";

popup_window = window.open(url, "PictureWindow", window_specs);

popup_window.focus();

}

menu_status = new Array();

function showBlock(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }else{
           switch_id.className = 'hidden';
           menu_status[theid] = 'hidden';
        }
    }
}

function jumpToPhoto(picNum) {

window.location.href="http://www.tony-bourke.com/site.php?page=personal&photo=" + picNum;

}
