var ToolBar_Supported = ToolBar_Supported ;
if (ToolBar_Supported != null && ToolBar_Supported == true)
{
	//To Turn on/off Frame support, set Frame_Supported = true/false.
	Frame_Supported = false;

	// Customize default ICP menu color - bgColor, fontColor, mouseoverColor
	setDefaultICPMenuColor("blue", "white", "yellow");

	// Customize toolbar background color
	setToolbarBGColor("blue");

	//***** Add Company menu *****
	
	addICPMenu("Company", "Company", "","");
	addICPSubMenu("Company","Company Profile","Show_Profile()");

	
	//***** Add Products menu *****
	
	addICPMenu("Products", "Products", "","");
	addICPSubMenu("Products","Desk-Tops","Show_Desktops()");
	addICPSubMenu("Products","Laptops","Show_Laptops()");
	addICPSubMenu("Products","Networking","Show_Networking()");
	addICPSubMenu("Products","Printers","Show_Printer()");
	addICPSubMenu("Products","Scanners","Show_Scanner()");
	addICPSubMenu("Products","Software","Show_Software()");
	addICPSubMenu("Products","Storage Products","Show_Storage()");
	addICPSubMenu("Products","Accessories","Show_Accessories()");
	
	
	//Services Menu
	addICPMenu("Services", "Services", "","");
	addICPSubMenu("Services","Internet / WWW","Show_WWW()");
	addICPSubMenu("Services","Networking","Show_Netservice()");
	addICPSubMenu("Services","Maintenance","Show_Maintenance()");
	addICPSubMenu("Services","Upgrades","Show_Upgrade()");
	addICPSubMenu("Services","Software Services","Show_Softservice()");
	addICPSubMenu("Services","ASCENT-Infoline","Show_Infoline()");
	
	
	//Support Menu
	addICPMenu("Support", "Support", "","");
	addICPSubMenu("Support","FAQs","Show_Faqs()");
	addICPSubMenu("Support","Newsletters","Show_Newsletters()");
	addICPSubMenu("Support","Downloads","Show_Downloads()");
	addICPSubMenu("Support","Feedback","Show_Feedback()");
	addICPSubMenu("Support","Contact Us","Show_Contact()");


	//System Quotations Menu
	addICPMenu("System Quotations", "System Quotation", "","");
	addICPSubMenu("System Quotations","Intel Celeron PC","Show_Celeron()");
	addICPSubMenu("System Quotations","Intel Pentium Dual Core PC","Show_P4dc()");
	addICPSubMenu("System Quotations","Intel P Core2Duo PC","Show_P4c2d()");
	addICPSubMenu("System Quotations","Intel P Core2Quad PC","Show_P4c2q()");
	
	

        function Show_Profile()
	{
		window.location = "http://www.ascent.co.in/ascent/profile.htm";
	}

	function Show_Desktops()
	{
		window.location = "http://ascent.co.in/products/desktops/desktops.htm";
	}
	
	function Show_Laptops()
	{
		window.location = "http://ascent.co.in/products/laptops/laptops.htm";
	}

	function Show_Networking()
	{
		window.location = "http://ascent.co.in/products/networking/network.htm";
	}
	
	function Show_Printer()
	{
		window.location = "http://ascent.co.in/products/printers/printers.htm";
	}

	function Show_Scanner()
	{
		window.location = "http://ascent.co.in/products/scanners/scanners.htm";
	}
	
	function Show_Software()
	{
		window.location = "http://ascent.co.in/products/software/software.htm";
	}
	
	function Show_Storage()
	{
		window.location = "http://ascent.co.in/products/storage/storage.htm";
	}
	
	function Show_Accessories()
	{
		window.location = "http://ascent.co.in/products/accessories/accessor.htm";
	}
	
	function Show_WWW()
	{
		window.location = "http://ascent.co.in/services/web.htm";
	}
	
	function Show_Netservice()
	{
		window.location = "http://ascent.co.in/services/network.htm";
	}
	
	function Show_Maintenance()
	{
		window.location = "http://ascent.co.in/services/maintain.htm";
	}
	
	function Show_Upgrade()
	{
		window.location = "http://ascent.co.in/services/upgrade.htm";
	}
	
	function Show_Softservice()
	{
		window.location = "http://ascent.co.in/services/software.htm";
	}
	
	function Show_Infoline()
	{
		window.location = "http://www.ascentinfoline.com";
	}
	
	function Show_Faqs()
	{
		window.location = "http://ascent.co.in/support/faqs.htm";
	}

	function Show_Newsletters()
	{
		window.location = "http://ascent.co.in/support/newslttr.htm";
	}
	
	function Show_Downloads()
	{
		window.location = "http://ascent.co.in/support/download.htm";
	}

	function Show_Feedback()
	{
		window.location = "http://ascent.co.in/support/feedback.html";
	}

	function Show_Contact()
	{
		window.location = "http://ascent.co.in/support/contact.htm";
	}
	
	function Show_Celeron()
	{
		window.location = "http://ascent.co.in/products/desktops/celeron.htm";
	}
	
	function Show_P4dc()
	{
		window.location = "http://ascent.co.in/products/desktops/p4dc.htm";
	}
	
	function Show_P4c2d()
	{
		window.location = "http://ascent.co.in/products/desktops/p4c2d.htm";
	}

	function Show_P4c2q()
	{
		window.location = "http://ascent.co.in/products/desktops/p4c2q.htm";
	}	
	
}
