  			 /**
				This function is to automatically convert the GMT time to local time 
				Version: 1.0 for CMS 4.5
				Author: Junxiang Ji, p465889
				2009.01.14
			 */
			 function glLocalTime( f_localTime )
  			{  				
				//alert("START");
	
				//alert("tagArray[i].innerHTML: "+tagArray[gl_i].innerHTML);
				orignalString = f_localTime;	
				orignalArray = orignalString.split(' ');
				
				tempDate = new Date();
				tempDate.setUTCDate(orignalArray[0]);
				
				tempDate.setUTCMonth(orignalArray[1]-1);
				//alert("m "+orignalArray[1]);
				tempDate.setUTCFullYear(orignalArray[2]);
				
				orignalArray = orignalArray[3].split(':'); //04:58
							
				tempDate.setUTCHours(orignalArray[0]);
				tempDate.setUTCMinutes(orignalArray[1]);					
				
				//ff format: 	Tue Jan 13 2009 12:58:55 GMT+0800 (China Standard Time)
				//IE format: 	Tue Jan 13 12:58:33 UTC+0800 2009
				//target format:	28 Jul 08 10:45 am
				orignalArray = tempDate.toString().split(' ');
				// Get the local tiem format
				localS = orignalArray[2];//day
				localS += " "+orignalArray[1];//month
				localS += " "+tempDate.toString().match(/\s\d\d(\d\d)/)[1];//get the latest two numbers of the year
				
				_paten = /((\d\d)(:\d\d)):\d\d/;
				tempTimeArray = tempDate.toString().match(_paten);
				//alert(tempTimeArray[0] +"-" +tempTimeArray[1]+"-" +tempTimeArray[2]+"-" +tempTimeArray[3]); 
				

				if(tempTimeArray[2]>12)
				{
					localS += " "+(tempTimeArray[2]-12) + tempTimeArray[3] +" pm";
				}else if(tempTimeArray[2]==0){ //There is no "00:45 am", should be "12:45 am"
					localS += " 12" + tempTimeArray[3] +" am";
				}else{
					localS += ' '+tempTimeArray[1] + " am";
				}

				return localS;
  			}