//
//    This script opens all of the URLs in this list.
//    Add new URLs to this list.
//
var aURLs = new Array(
//
"www.slashdot.org",
"www.excite.com",
"www.12noon.com"
//
);
//    N.B.: The last URL in the list CANNOT have a comma after it.

var i;
for (i = 0; i < aURLs.length; ++i)
{
	OpenURL(aURLs[i]);
}

//
//    This function opens the passed URL in a new IE browser window.
//
function OpenURL(strURL)
{
   objIE = WScript.CreateObject("InternetExplorer.Application");
   if (objIE == null)
   {
      WScript.Echo("Unable to launch Internet Explorer.");
      WScript.Quit(0);
   }
   objIE.Navigate(strURL);
   objIE.Visible = true;
}
