﻿
$(document).ready(function() {
    //workaround for IE6 not able to display .png image file
    $(document).pngFix();

    //display privacy policy in an overlay window
   // $("#privacy").fancybox({ 'hideOnContentClick': true, 'zoomSpeedIn': 500, 'zoomSpeedOut': 500, 'frameWidth': 750, 'frameHeight': 500, 'overlayShow': true });



//    $("p#test1 a").fancybox({
//        'hideOnContentClick': true
//    });

//    $("div#showimage a").fancybox({ 'hideOnContentClick': true, 'zoomSpeedIn': 300, 'zoomSpeedOut': 500, 'frameWidth': 800, 'frameHeight': 700, 'overlayShow': true });

//    $(".image-thumbnail a").fancybox({ 'hideOnContentClick': true, 'zoomSpeedIn': 500, 'zoomSpeedOut': 500, 'frameWidth': 800, 'frameHeight': 700, 'overlayShow': true });


});

function popUp(url, width, height, left, top) {
day = new Date();
id = day.getTime();
args = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0," + "width=" + width + "," + "height=" + height + "," + "left=" + left + "," + "top=" + top;
eval("page" + id + " = window.open(url, '" + id + "', '" + args + "');");
}
