function openLbox(img,caption) {
	var w = 0;
	var h = 0;
	//IE
	if(!window.innerWidth)
	{
		//strict mode
		if(!(document.documentElement.clientWidth == 0))
		{
			w = document.documentElement.clientWidth;
			h = document.documentElement.clientHeight;
		}
		//quirks mode
		else
		{
			w = document.body.clientWidth;
			h = document.body.clientHeight;
		}
	}
	//w3c
	else
	{
		w = window.innerWidth;
		h = window.innerHeight;
	}
	imgcode = "<img src='" + img + "' onclick='closeLbox()'/>";
	w = w - 1; //removes scrollbar in FF 
	$('#lboxDiv').css({"height":h + "px","width":w + "px"});				  
    $('#lboxTable').css({"height":h + "px","width":w + "px"});
	$('#topRow').attr("valign","top");
	$('#lboxTableInner').css("margin-top","20px");
	$('#imgCell').html(imgcode);
	$('#imgCaption').html(caption);
	$('#lboxDiv,#lboxTable').show('slow');
}
function closeLbox() {
	$('#lboxDiv,#lboxTable').hide();
}
function showFull(src) {
		openLbox(src,"");
}
