var jv_fullWidth = $('html').width() / 2;
var jv_fullHeight = $('html').height() / 2;

$(document).ready(function() {
	$('.closePopup').click(function() {
		$('.lightbox_bg').fadeOut();
		$('.boxpopup').fadeOut();
	});
});

// Show the picture load window
function loadPicture() {
	$('#btLoadPict').click(function() {
		if( $.browser.msie ) $('.lightbox_bg').show();
		else  $('.lightbox_bg').fadeIn();
		$('.boxpopup').fadeIn();
		
		$('#cls').click(function() {
			$('.lightbox_bg').fadeOut();
			$('.boxpopup').fadeOut();
		});
	});
}

// Show the main popup window with background
function showMainPopup() {
	var x = jv_fullWidth - 320;
	var y = jv_fullHeight - 250;
	
	if( $.browser.msie ) $('.lightbox_bg').show();
	else  $('.lightbox_bg').fadeIn();
	$('.boxpopup').css({'top' : y, 'left' : x }).fadeIn();
	
	$('.cls').click(function() {
		$('.lightbox_bg').fadeOut();
		$('.boxpopup').fadeOut();
	});
}
