﻿
function createLightBox(hyperLinkId)
{
	$(hyperLinkId).colorbox({innerWidth:"878px", innerHeight:"544px", iframe:true});
}

function closeLightBox()
{
	$.fn.colorbox.close();
}

var _url;
var _width
var _height;

function reloadLightBox(url, width, height) {
    // stop IE js errors
    _height = height;
    _width = width;
    _url = url;
    setTimeout(reloadAfterWait, 0);
}

function reloadAfterWait() {
    $.fn.colorbox({ href: _url, innerWidth: _width, innerHeight: _height, iframe: true });
}