function openShowWindow(url, width, height)
	{
		var name = "_blank";
		
		// make more room in window
		width += 15;
		height += 15;
		var props = "width=" + width + ",height="+ height + ",screenX=0,screenY=0,scrollbars,resizable";
		window.open(url, name, props);
	}