function sen_photoshow(path_to_sen_photoshow_folder,imagepath,w,h,textpath)
{
    w = w+60;
    h = h+140;

    var extra;
    extra =  "location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes,";
    extra += "width=" + w + ",height=" + h;

    imagepath = escape(imagepath);
    textpath  = escape(textpath);

    var url;
    url = path_to_sen_photoshow_folder + "sen_photoshow.php?i=" + imagepath;
    url+= '&w=' + w;
    url+= '&h=' + h;
    url+= '&t=' + textpath;

    sen_JsOpenWindowWindow = window.open(url,'sen_JsOpenWindowWindow',extra);

    sen_JsOpenWindowWindow.focus();
}