
var newWindow = 0;
function enlargeImage(img_src,title)
{
	if(newWindow) if(!newWindow.closed) newWindow.close();
	if(!title) title = '';
	var width=100, height=100;
	var left = 0, top = 0;
	var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
	var newWindow = window.open("","newWindow", styleStr);
	var head = '';
	newWindow.document.write('<html><head><title>'+title+'</title></head>');
	newWindow.document.write('<body style="margin:5px;background-color:#CCCCCC;"></body></html>');
	
	newWindow.document.body.innerHTML = '<img id="enlargedImage" onclick="window.close();"/>';
	var img = newWindow.document.getElementById('enlargedImage');
	img.src = img_src;
	img.onload = function(e){
		newWindow.resizeTo(img.width+20,img.height+60);
		newWindow.focus();
	}
}

function OpenWindow(url, width, height)
{
	var w = screen.width, h = screen.height;
	window.open(url, '', 'status=yes,scrollbars=yes,resizable=yes,width='+width+',height='+height+',top='+Math.floor((h - height)/2-14)+',left='+Math.floor((w - width)/2-5));
}

