window.onload=function()
{
	obj1=document.getElementsByTagName("a")[0];			
	objs=document.getElementsByTagName("a");		
	if (obj1!=null)		
    	{			
    		for(var i=0;i<objs.length;i++)		
		{	
			if (objs[i].href!=null){objs[i].href=encodeURI(objs[i].href);}
		}	
    	}			

}