
	<!--<script name="javascript">
		function submitURL()
		{						
			var isCurPageURL='N';
			var cachedVal="";
			var linkURL="";
			if(isCurPageURL=='Y')
			 { 
			 	linkURL=window.location.href;
			    var pieces=linkURL.split('pagePK=');
				cachedVal= (pieces.length>1)?"N":"Y";
			 }
			else	
			 {			 	
				linkURL='http://web.worldbank.org/WBSITE/EXTERNAL/PROJECTS/0,,pagePK:64392398~piPK:64782055~theSitePK:40941,00.html';						       
			    var pieces=linkURL.split('pagePK=');
				cachedVal= (pieces.length>1)?"N":"Y";
			 }
			var countryCode=document.CountryList.countrylist.options[document.CountryList.countrylist.selectedIndex].value;
			var countryName=document.CountryList.countrylist.options[document.CountryList.countrylist.selectedIndex].label												
			var menuPK ='3990429';
			var sitePK ='2748750'; 
			if (cachedVal=='Y')
			{												
				var pieces=linkURL.split('countrycode:');
				if (pieces.length>1)
					{
						linkURL=pieces[0] + 'countrycode:' + escape(countryCode);
						pieces2=pieces[1].split('~');
						if (pieces2.length>1)
							{
								linkURL+= pieces[1].substr(pieces2[0].length);
							}
						else
							{
								linkURL+= ',00.html';
							}
					}
				else
					{
						pieces=linkURL.split(',00.html');
						linkURL=pieces[0] + '~countrycode:' + escape(countryCode) + ',00.html';
					}
					
				
				// Commented for JIRA:SDML-267
			/*	pieces=linkURL.split('countryname:');
				if (pieces.length>1)
					{
						linkURL=pieces[0] + 'countryname:' + escape(countryName);
						pieces2=pieces[1].split('~');
						if (pieces2.length>1)
							{
								linkURL+= pieces[1].substr(pieces2[0].length);
							}
						else
							{
								linkURL+= ',00.html';
							}
					}
				else
					{
						pieces=linkURL.split(',00.html');
						linkURL=pieces[0] + '~countryname:' + escape(countryName) + ',00.html';
					}		*/
				
				
				//Appending MenuPk
				pieces=linkURL.split('theSitePK:');
					if (pieces.le ????ngth>1)
					{
						linkURL=pieces[0] + 'theSitePK:' + escape(sitePK);
						pieces2=pieces[1].split('~');
						if (pieces2.length>1)
							{
								linkURL+= pieces[1].substr(pieces2[0].length);
							}
						else
							{
								linkURL+= ',00.html';
							}
					}
					else
					{
						pieces=linkURL.split(',00.html');
						linkURL=pieces[0] + '~theSitePK:' + escape(sitePK) + ',00.html';
					}				

				var pieces=linkURL.split('menuPK:');
				if (pieces.length>1)
					{
						linkURL=pieces[0] + 'menuPK:' + escape(menuPK);
						pieces2=pieces[1].split('~');
						if (pieces2.length>1)
							{
								linkURL+= pieces[1].substr(pieces2[0].length);
							}
						else
							{
								linkURL+= ',00.html';
							}
					}
				else
					{
						pieces=linkURL.split(',00.html');
						linkURL=pieces[0] + '~menuPK:' + escape(menuPK) + ',00.html';
					}
					
			}
			else
			{							
				var pieces=linkURL.split('theSitePK=');
				if (pieces.length>1)
						{
							var sector_val=sitePK;										
							if (sector_val.length >0)	
								{			
								linkURL=pieces[0] + 'theSitePK='+sitePK;			
								}
							else
								{
								linkURL=pieces[0] ;
								}										
							var pieces2=pieces[1].split('&');
							if (pieces2.length>1)
								{
								linkURL+= pieces[1].substr(pieces2[0].length);
								}			
						}
				else
				  {
					linkURL=linkURL+'&theSitePK='+sitePK;
				  }	
				  var pieces=linkURL.split('menuPK=');
				  if (pieces.length>1)
						{
							var sector_val=menuPK;										
							if (sector_val.length >0)	
								{			
								linkURL=pieces[0] + 'menuPK='+menuPK;			
								}
							else
								{
								linkURL=pieces[0] ;
								}										
							var pieces2=pieces[1].split('&');
							if (pieces2.length>1)
								{
								linkURL+= pieces[1].substr(pieces2[0].length);
								}			
						}
				else
				  {
					linkURL=linkURL+'&menuPK='+menuPK;
				  }		
				  var pieces= ????linkURL.split('countrycode=');
				if (pieces.length>1)
						{
							var sector_val=countryCode;										
							if (sector_val.length >0)	
								{			
								linkURL=pieces[0] + 'countrycode='+countryCode;			
								}
							else
								{
								linkURL=pieces[0] ;
								}										
							var pieces2=pieces[1].split('&');
							if (pieces2.length>1)
								{
								linkURL+= pieces[1].substr(pieces2[0].length);
								}			
						}
				else
				  {
					linkURL=linkURL+'&countrycode='+countryCode;
				  }	
			}
			//JIRA : PROJECTS-210 Change: Code fix for firefox browser support issue Author:Mohamed Anvar .Date:24-Aug-07 
			//document.location.reload(linkURL);
			window.location.href = linkURL;
			
			return false;
		}
	