﻿

function closeLightBox() {
    $.prettyPhoto.close();
    window.location.href = window.location.href;
}

function closeLightBox(url) {
    $.prettyPhoto.close();
    window.location.href = url;
}

//function openLightBox(promoCode, mode) {
//    $("a[rel^='prettyPhoto']").prettyPhoto();
//    alert(mode);
//    $.prettyPhoto.open("/loginlightbox?iframe=true&promocode=" + promoCode + "&width=420&height=420&mode=" + mode);
//}

function openLightBox() {
    
    var url = "/loginlightbox?iframe=true&width=390&height=400";
    $("a[rel^='prettyPhoto']").prettyPhoto( { iframe_markup: '<iframe src ="{path}" width="{width}" height="{height}" frameborder="no" scrolling="no"></iframe>' });
    $.prettyPhoto.open(url); 

}
function openLightBoxPromo() {
    var url = "/applypromocode?iframe=true&width=390&height=300";
    $("a[rel^='prettyPhoto']").prettyPhoto( { iframe_markup: '<iframe src ="{path}" width="{width}" height="{height}" frameborder="no" scrolling="no"></iframe>' });
    $.prettyPhoto.open(url);
}

//$(document).ready(function() {

//    $("#somediv").load('/loginlightbox', function() {
//        var dlg = $('#myDiv').dialog({
//            height: 440,
//            width: 550,
//            modal: true,
//            draggable: false,
//            resizable: false,
//            autoOpen: false,
//            closeOnEscape: true
//        });
//    });
//});



