function openWin(sName,iWidth,iHeight) {

	var iLeft = 500;
	var iLocate = 0;
	var iResize = 0;
	var iTop = 100;

	window.open(sName + '.htm',sName,
	'left=' + iLeft +
	',width=' + iWidth + 
	',height=' + iHeight + 
	',location=' + iLocate +
	',resizable=' + no +
	',top=' + iTop);
}