// help.js

function showEnlargement(img,width,height)
{
	var i = "/images/help/instructions/" + img;
	var e = window.open("/help/enlargement.html","enlargement","width=" + width + ",height=" + height + ",status=no,resizable=no,scrollbars=no");
	e.document.write('<img src="'+ i +'" />');
	e.document.close();
}

