function philatelyEntityLargeImage(imgSrc, width, height, contextPath)
{
	var largeImage = document.getElementById('philatelyEntityImage');
	if (largeImage == null)
	{
	    largeImage = document.createElement("div");
	    largeImage.className = "philatelyEntityImage";
	    largeImage.id = 'philatelyEntityImage';
	    largeImage.style.display = 'none';
	    largeImage.style.textAlign = 'center';
	    largeImage.style.verticalAlign = 'middle';
	    largeImage.style.backgroundColor = '#FDF6ED';
	    largeImage.style.borderStyle = 'solid';
	    largeImage.style.borderColor = '#000000';
	    largeImage.style.borderWidth = '1px';
	    largeImage.style.padding = '4px';
		document.body.appendChild(largeImage);
	}
	
	var pane_width = (width + 20) + 'px';
	var pane_height = (height + 20) + 'px';
	var overflow = '';
		
	if(width > 720 || height > 520)
	{
		pane_width = 720 + 'px';
		pane_height = 520 + 'px';
		overflow = 'overflow:scroll;';
	}
	
    largeImage.innerHTML = 
    	'<div style="text-align:right;"><a href="#" onclick="philatelyEntityLargeImageOff()" style="margin:4px;" title="close"><img src="'+contextPath+'/images/deleteCategory.gif"/></a></div>' +
    	'<div style="'+overflow+' width:'+pane_width+'; height:'+pane_height+'; margin:2px auto;">' +
    		'<img src="'+imgSrc+'" style="cursor: pointer; cursor: hand;" onClick="philatelyEntityLargeImageOff()"/>'+
    	'</div>';
	
	var philatelyEntityImageLayer = new PopupWindow('philatelyEntityImage'); 
	philatelyEntityImageLayer.autoHide();
	    
	placeElementOnScreenCenter(largeImage);
	largeImage.style.display = 'block';
}

function philatelyEntityLargeImageOff()
{
	largeImage = document.getElementById('philatelyEntityImage');
	if (largeImage != null)
	{
   		largeImage.style.display = 'none';
	}
}

