function openWin(sName,sQuery,iWidth,iHeight,iScrolls) {

	var iLeft = 100;
	var iLocate = 0;
	var iResize = 1;
	var iTop = 100;

	window.open(sName + '.html' + sQuery,sName,
	'left=' + iLeft +
	',width=' + iWidth + 
	',height=' + iHeight + 
	',location=' + iLocate +
	',resizable=' + iResize +
	',scrollbars=' + iScrolls +
	',top=' + iTop);
}