function fwLoadMenus() {
  if (window.fw_menu_0) return;
  window.fw_menu_0 = new Menu("root",152,17,"Arial, Helvetica, sans-serif",10,"#000000","#ffffff","#cccccc","#0000cc");
  fw_menu_0.addMenuItem("Colours","location='colours.htm'");
  fw_menu_0.addMenuItem("Database Integration","location='database_integration.htm'");
  fw_menu_0.addMenuItem("Domain Name Registration","location='dns.htm'");
  fw_menu_0.addMenuItem("E-commerce","location='ecommerce.htm'");
  fw_menu_0.addMenuItem("Graphics Design","location='graphics_design.htm'");
  fw_menu_0.addMenuItem("Multimedia Development","location='multimedia_development.htm'");
  fw_menu_0.addMenuItem("Maintenance","location='maintenance.htm'");
  fw_menu_0.addMenuItem("Internet Marketing","location='internet_marketing.htm'");
  fw_menu_0.addMenuItem("Templates","location='templates.htm'");
  fw_menu_0.addMenuItem("Web Development Services","location='web_development_services.htm'");
   fw_menu_0.hideOnMouseOut=true;
  window.fw_menu_1 = new Menu("root",98,17,"Arial, Helvetica, sans-serif",10,"#000000","#ffffff","#cccccc","#0000cc");
  fw_menu_1.addMenuItem("Unix; Shared","location='unix_shared.htm'");
  fw_menu_1.addMenuItem("Unix; Dedicated","location='unix_dedicated.htm'");
   fw_menu_1.hideOnMouseOut=true;
  window.fw_menu_2 = new Menu("root",120,17,"Arial, Helvetica, sans-serif",10,"#000000","#ffffff","#cccccc","#0000cc");
  fw_menu_2.addMenuItem("Our Guarantee","location='our_guarantee.htm'");
  fw_menu_2.addMenuItem("Request an Estimate","location='request_an_estimate.htm'");
  fw_menu_2.addMenuItem("Request a Quote","location='request_a_quote.htm'");
  fw_menu_2.addMenuItem("Privacy and Policies","location='privacy_and_policies.htm'");
   fw_menu_2.hideOnMouseOut=true;
  window.fw_menu_3 = new Menu("root",152,17,"Arial, Helvetica, sans-serif",10,"#000000","#ffffff","#cccccc","#0000cc");
  fw_menu_3.addMenuItem("Internet Definitions","location='internet_definitions.htm'");
  fw_menu_3.addMenuItem("Frequently Asked Questions","location='frequently_asked_questions.htm'");
  fw_menu_3.addMenuItem("Development Workbook","location='development_workbook.htm'");
  fw_menu_3.addMenuItem("E-Facts + Statistics","location='efacts_statistics.htm'");
  fw_menu_3.addMenuItem("Currency Converter","location='currency_converter.htm'");
   fw_menu_3.hideOnMouseOut=true;

  fw_menu_3.writeMenus();
} // fwLoadMenus()


function Start(page) {
	OpenWin = this.open(page, "CtrlWindow", "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

function launchwin(winurl,winname,winfeatures)
{
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open(winurl,winname,winfeatures);
	if(parseInt(navigator.appVersion) >= 4)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
	}
}
function launchFullWin(winurl,winname)
{
	//This launches a new window and then
	//focuses it if window.focus() is supported.
  	var winl = 0;//screen.width / 2;
  	var wint = 0;//screen.height / 2;
	newwin = window.open(winurl,winname,'scrollbars=yes,resizable=yes,menubar=yes,toolbar=yes,top=' + wint + ',left=' + winl + ',width=' + screen.width + ',height=' + screen.weight);
	if(parseInt(navigator.appVersion) >= 4)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
	}
}
function launchCenteredWin(url, name, width, height, otherfeatures)
{
  var str = "height=" + height + ",innerHeight=" + height;
  str += ",width=" + width + ",innerWidth=" + width;
  if (window.screen) {
    var ah = screen.availHeight - 30;
    var aw = screen.availWidth - 10;

    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;

    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
  }
  newwin = window.open(url, name, str + ',' + otherfeatures);
  if(parseInt(navigator.appVersion) >= 4)
  {
	//delay a bit here because IE4 encounters errors
	//when trying to focus a recently opened window
 	setTimeout('newwin.focus();',250);
  }
}
function launchNewsWin(winurl,winname)
{
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open(winurl,winname,'scrollbars=yes,resizable=yes,width=800,height=600');
	if(parseInt(navigator.appVersion) >= 4)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
	}
}
function launchStoreWin()
{
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open('http:\/\/www.2advanced.com/equipment/index.html','Equipment','scrollbars=yes,resizable=yes,width=790,height=385');
	if(parseInt(navigator.appVersion) >= 4)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
	}
}
function launchWallpaper(winurl,winname)
{
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	newwin = window.open(winurl,winname,'scrollbars=no,resizable=no,width=515,height=385');
	if(parseInt(navigator.appVersion) >= 4)
	{
		//delay a bit here because IE4 encounters errors
		//when trying to focus a recently opened window
 		setTimeout('newwin.focus();',250);
	}
}
