// Pop-up the window for the full-size image
function raiseFullImage(sImagePath, iWidth, iHeight)
{
	var sWinProps = "";
	var objWin;
	var iWinLeft = 0; iWinTop = 0;
	
	iWinLeft = (screen.availWidth / 2) - (iWidth / 2);
	iWinTop = (screen.availHeight / 2) - (iHeight / 2);
	sWinProps = "status=yes,scrollbars=yes,resizeable=no,location=no,menubar=no," +
		"screenY=" + iWinTop + ",screenX=" + iWinLeft + ",top=" + iWinTop + ",left=" + 
		iWinLeft + ",width=" + iWidth + ",height=" + iHeight;
		
	objWin = window.open(sImagePath, "", sWinProps);
}
// Pop-up the window for the full-size image
function raiseFullMapImage(sImagePath, iWidth, iHeight)
{
	var sWinProps = "";
	var objWin;
	var iWinLeft = 0; iWinTop = 0;
	
	//alert(screen.availWidth);
	//alert(screen.availHeight);
	iWinLeft = 200;
	iWinTop = 70;
	sWinProps = "status=yes,scrollbars=yes,resizeable=no,location=no,menubar=no," +
		"screenY=" + iWinTop + ",screenX=" + iWinLeft + ",top=" + iWinTop + ",left=" + 
		iWinLeft + ",width=" + iWidth + ",height=" + iHeight;
		
	objWin = window.open(sImagePath, "", sWinProps);
}