﻿
$(function() {
    $(".jPopup").click(function() {
        var href = $(this).attr("href");
        var title = $("img", this).attr("alt");
        newwindow2 = window.open('', "popup", "status=0, toolbar=0,location=0,menubar=0,directories=0,scrollbars=1,resizable=1,width=500,height=500");
        var tmp = newwindow2.document;
        tmp.write('<html><head><title>' + title + '</title>');
        tmp.write('</head><body style="color:#666666; font-family: Arial,Verdana,Sans-Serif; font-size: 12px;">');
        tmp.write('<p>' + title + ' (<a style="color:#41B1E3;" href="javascript:self.close()">close</a>)</p>');
        tmp.write('<p><img src="' + href + '" /></p>');
        tmp.write('</body></html>');
        tmp.close();
        
        return false;
    });
});
