var ptpServer = "www.pictopia.com";
var ptpNameSpace = 'oklahoman';
var ptpPhoto = '/2/showimage';
// -------------------------------------------------------------------------- //
function goPtp (title, photo_id)
{
    name = 'newsok_' + photo_id;
    //t_url = ptpPhoto + '/4/'+photo_id+"/";
    t_url = ptpPhoto + '/'+photo_id+"/gallery_photo";
 
    var loc = 'http://' + ptpServer + '/perl/ptp/' + ptpNameSpace;
    loc += '?photo_name=' + name + '&title=' + escape(title)
    loc += '&t_url=' + escape(t_url) + '&time=' + new Date().getTime();

    var win = window.open(loc, 'ptp_' + ptpNameSpace, 'width=1024, height=800, scrollbars=yes, resizable=yes, toolbar=no, '+'status=yes, menubar=no');
    win.focus();
}
