var new_window;

function openSlideshowWindow(url) {

    new_window=window.open(url,'name','height=500,width=600 location=no, toolbar=no, menubar=no, resizable=no, status=no');

    if (window.focus) {
        new_window.focus()
    }

}

