function showMenu(section, subSection, sub2section){
	var d = document
	switch( section.toUpperCase() ){
		case "ABOUT" : menu = 
			[
			"Clients %% clients.html" 
			
			]
			subm = 
			[
				[]
			]
			break
		case "PROJECTS" : 
			menu = 
			[
			"Web %% projects_wb32tv.html", 
			"Business %% projects_dealflow.html", 
			"Applications and Components %%  projects_share.html",
			"PDA %% projects_pda_bart.html",
			"Drivers %% projects_ip.html",
			"Financial Tools %% projects_afmdealer.html"
			]
			subm = 
			[
				[
				"WB32tv %% projects_wb32tv.html",
				"Sovereign Diamonds %% projects_sovereign.html",
				"OnVest %% projects_onvest.html",
				"Grade Tutor %% projects_gradetutor.html",
				"Create Work %% projects_create.html",
				"Cool Stats %% projects_coolstats.html",
				"Kazaa %% projects_kazaa.html"
				],
				[
				"Dealflow %% projects_dealflow.html",
				"BizOppAlliance %% projects_bizopp.html"
				],
				[
				"Share v.2 %% projects_share.html",
				"Visio Master %% projects_visiomaster.html",
				"IE Custom Toolbar %% projects_ie.html",
				"Netscape/Linux Custom Toolbar %% projects_linux.html",
				"Voice Broadcasting Plugin %% projects_voice.html",
				"Wintella %% projects_wintella.html",
				"Collaboration System (UTAIS) %% projects_collaboration.html",
				"Auction Pro %% projects_auctionpro.html",
				"Software Creator %% projects_software.html",
				"Swissair  Stats %% projects_swissair.html",
				"Mozaic Creator %% projects_mozaic.html",
				"See %% projects_see.html",
				"Marina Guides %% projects_marina.html",
				"AOL Filter %% projects_aol.html",
				"Sync Toolkit %% projects_synctoolkit.html",
				"Kaboodle %% projects_kaboodle.html",
				"DayPoint %% projects_daypoint.html"
				],
				[
				"Bartending %% projects_pda_bart.html",
				"GPS Navigation System %% projects_pda_gps.html",
				"Winning Catch  %% projects_pda_game.html",
				"Quality Ambassador %% projects_pda_ambass.html",
				"VenueProfiler %% projects_pda_venue.html"
				],
				[
				"IP Redirector %% projects_ip.html",
				"Print %% projects_print.html"
				],
				[
				"AFMDealer %% projects_afmdealer.html",
				"AFMCharts %% projects_afmcharts.html",
				"AFMIDLe %% projects_afmidle.html",
				"AFMQView %% projects_afmqview.html",
				"AFMTicks %% projects_afmticks.html",
				"AFMItems %% projects_afmitems.html"
				]
			]
			break
		case "SERVICES" : menu = 
			[
			"E-Commerce %% serv_ecomm.html", 
			"Net Solutions %% serv_netsolutions.html", 
			"Web Enabling %% serv_webenabling.html", 
			"JAVA APP. DEVP %% serv_java.html", 
			"Web Agents %% serv_webagents.html", 
			"Embedded Systems %% serv_embedded.html",
			"Development Process %% serv_development.html",
			"Our Guarantee %% serv_guarantee.html"
			]
			subm=
			[
				[],[],[],[],[],[],[],[]
			]
			break
		case "DESIGN STUDIO" : menu = 
			[
			"Web-design %% designst_web.html", 
			"Graphics %% designst_graphics.html", 
			"Logos %% designst_logos.html", 
			"Banners %% designst_banners.html", 
			"Animation %% designst_animation.html"
			]
			subm=
			[
				[],[],[],[],[]
			]
			break
		case "PDA" : menu = 
			[
			"Services %% pda_services.html", 
			"Development Process %% pda_development.html",
			"Palm Integration Services %% pda_ intergration.html",
			"Our Guarantee %% pda_guarantee.html",
			"Projects %% projects_pda_bart.html" 
			]
			subm=
			[
				[],[],[],[],[]
			]
			break
		case "CAREERS" : menu = 
			[
			"Openings"
			]
			subm=
			[
				[]
			]
			break
		default: menu = ['<font color="#ff0000">Section "'+section+'" is undefined</font>']
	}
	d.write('<p class="menuHead">'+section+'</p><ul type="square">')

	for(var i=0; i<menu.length; i++){
		var m = menu[i].split("%%")
		if(i+1 != subSection){
			if( m.length > 1)
				d.write('<li class="menu"><a class="menu" href="'+m[1]+'" onfocus="blur()">'+m[0]+'</a></li>')
			else
				d.write('<li class="error">'+menu[i]+'</li>')
		}else{
			d.write('<li class="menu"><a class="menuV" href="'+m[1]+'" onfocus="blur()"><b>'+m[0]+'</b></a></li><ul>')
			
			for(var t=0; t<subm[subSection-1].length; t++){
				d.write('<li class="menu1">')
				var sm = subm[subSection-1][t].split("%%")
				if( t+1 == sub2section )
					d.write('<a class="menu1V" href="'+sm[1]+'" onfocus="blur()">'+sm[0]+'</a>')
				else
					if( sm.length > 1)
						d.write('<a class="menu1" href="'+sm[1]+'" onfocus="blur()">'+sm[0]+'</a>')
					else
						d.write('<a class="error" href="#" onfocus="blur()">'+subm[subSection-1][t]+'</a>')
						
				d.write('</li>')
			}
			d.write('</ul>')
		}
	}
    d.write('</ul>')
}