﻿function ShowFeedbackForm(feedbackfrm){
    $.extend($.blockUI.defaults.displayBoxCS, {width: '400px', height: '370px'});
    $.extend($.blockUI.defaults.pageMessageCSS, { width:'400px', height: '370px', margin:'-185px 0 0 -200px', top:'50%', left:'50%', border:'2px solid #293d68'});
    $.blockUI("<iframe src='"+feedbackfrm+"' width='100%' height='100%' frameborder='0' style='border:none'>");
    return false;
}

function ShowForm(Form) {
    $.extend($.blockUI.defaults.displayBoxCS, { width: '340px', height: '260px' });
    $.extend($.blockUI.defaults.pageMessageCSS, { width: '340px', height: '260px', margin: '-130px 0 0 -170px', top: '50%', left: '50%', border: '2px solid #293d68' });
    $.blockUI("<iframe src='" + Form + "' width='100%' height='100%' frameborder='0' style='border:none'>");
    return false;
}

function ShowTipAFriend(Form) {
    $.extend($.blockUI.defaults.displayBoxCS, { width: '460px', height: '260px' });
    $.extend($.blockUI.defaults.pageMessageCSS, { width: '460px', height: '260px', margin: '-130px 0 0 -230px', top: '50%', left: '50%', border: '2px solid #293d68' });
    $.blockUI("<iframe src='" + Form + "' width='100%' height='100%' frameborder='0' style='border:none'>");
    return false;
 }
 
 function ShowFormRis(Form) {
    $.extend($.blockUI.defaults.displayBoxCS, { width: '340px', height: '290px' });
    $.extend($.blockUI.defaults.pageMessageCSS, { width: '340px', height: '290px', margin: '-130px 0 0 -170px', top: '50%', left: '50%', border: '2px solid #293d68' });
    $.blockUI("<iframe src='" + Form + "' width='100%' height='100%' frameborder='0' style='border:none'>");
    return false;
}



$(document).ready(imageblock);

function imageblock() {
    $("img").bind("load", function() {
        var img = $(this); var p = img.parent(); if (p.attr("rel") == "pimgs" && !p.hasClass("thickbox")) return;
        var w = img.width() + 'px', h = img.height() + 'px';
        $(this).before("<img src='/public/resources/images/blank.gif' style='border:none !important;position:absolute;z-index:1000;width:" + w + ";height:" + h + "' />");
    });


//    $("img").each(function() {
//        $(this).onload(function() {
//            var img = $(this); var p = img.parent(); if (p.attr("rel") == "pimgs" && !p.hasClass("thickbox")) return;
//            var w = img.width() + 'px', h = img.height() + 'px';
//            $(this).before("<img src='/public/resources/images/blank.gif' style='border:none !important;position:absolute;z-index:1000;width:" + w + ";height:" + h + "' />");
//        })
//    })
}

