using System;
using System.Drawing;
public static class DisplayFusionFunction
{
	public static void Run(IntPtr windowHandle)
	{
		// Set the websites and their target monitor IDs here
		string[,] websites = {
            { "https://www.displayfusion.com", "2" },
            { "https://www.clipboardfusion.com", "3" }
		};
		
		// Open the websites and move them to their target monitors
		for (int i = 0; i < websites.GetLength(0); i++)
		{
            IntPtr window = BFS.Web.OpenUrlNewWindow(websites[i,0]);
            uint monitorID = Convert.ToUInt32(websites[i,1]);            
            BFS.Window.MoveToMonitorMaximized(monitorID, window);
		}
	}
}