

function ShowLightview (url, options)
{
    jQuery('#viewBoxBackground').show();
    jQuery('#viewBox').html('<div style="float:right"><a href="/" onclick="CloseLightview();return false;"><img src="' + template_url + '/images/lightview/close_small.png" /></a></div><br /><iframe id="viewBoxFrame" src="'+url+'"></iframe>');
    jQuery('#viewBox').show();    
}

function CloseLightview (url)
{

    jQuery('#viewBox').html('');
    jQuery('#viewBoxBackground').hide();
    jQuery('#viewBox').hide(); 
        
    if (url)
    {
        document.location = url;
    }
}

$(document).ready (function ()
{
    jQuery('#viewBoxBackground').width('100%').height('100%');
    jQuery('#viewBox').width('700px').height('300px');
	
    jQuery('#viewBoxBackground').hide();
    jQuery('#viewBox').hide();
});

