function createPopupWindow(html,name,width,height) {
	var n=open
	( 
	html, name, 
	'width='+width+',height='+height
	+',left='+(screen.width -width )/2
	+',top=' +(screen.height-height)/2
	+',status=0,menubar=0,toolbar=0,scrollbars=0,resizable=0'
	);
	n.focus();
}
	
function showLargeImage(sImage,sTemplate,sWidth,sHeight){
	var w,h;
	if(sWidth!='')	
		w=parseInt(sWidth);
	else
		w=650;
	if(sHeight!='')
		h=parseInt(sHeight);
	else
		h=650;
	createPopupWindow('/library/templates/'+sTemplate+'/includes/includeEnlargedImage.asp?image='+escape(sImage),'enlargedImage',w,h);
}

