function showIssuuPlayer(id){

	$("body").prepend("<div class='shadow'></div><div class='issuuWindow'></div>");

	var width = $(window).width();
	var height = $(window).height();
	
	$.get('xmlhttp/getIssuuPlayer.php', { id: id, width: width, height: height }, function(data){

		data = data.split('|');

		var mleft = (width - data[1]) / 2;

		$('.issuuWindow').animate({
			width: data[1], height: data[2], top: 30, left: mleft
		}, 500, function(){
			$('div.issuuWindow').html(data[0]);
		});
		
	});
}

function closeIssuuPlayer(){
	$('div.shadow, div.issuuWindow').hide();

	$('.issuuWindow').css('width', '1px');
	$('.issuuWindow').css('height', '1px');
	$('.issuuWindow').css('left', '50%');
	$('.issuuWindow').css('top', '50%');

	$('div.issuuWindow').html('');
}

// Close image zooms when user hits esc
$(document).keydown(function (e) {
    if (e.keyCode == 27) {
		closeIssuuPlayer();
    }
});
