
   

		window.onload =function()
	
	
		//function changeDivHTML()
		{ 
			//var previousInnerHTML = new String();
			
			//previousInnerHTML = document.getElementById('google_custom_search').innerHTML;
			
			
			//previousInnerHTML = previousInnerHTML.concat("<div style='float:right; width:210px; padding-top:10px;'><form name='qsearch' action='/en/global/search.html'><B style='font-family:Arial, Helvetica, sans-serif; font-size:11px;'>SEARCH&nbsp;</B><input name='query' type='text' value='  ENTER KEYWORDS' onBlur='javascript: if(this.value == '') this.value = '  ENTER KEYWORDS';' onFocus = 'javascript: if(this.value == '  ENTER KEYWORDS') this.value ='';' size='20' style='font-family:Arial, Helvetica, sans-serif; font-size:9px; font-weight:bold; color:#493807;'><input type=image src='http://localhost/aseancruise/docroot/aseancruise/images/global/but_search01.gif' width='19' height='19' vspace='3' border='0' align='absmiddle' value='Search' /></div>");
			
			
			//document.getElementById('google_custom_search').innerHTML = previousInnerHTML;
			
			//document.getElementById('google_custom_search').innerHTML = "<div style='float:right; width:210px; padding-top:10px;'><form name='qsearch' action='/en/global/search.html'><B style='font-family:Arial, Helvetica, sans-serif; font-size:11px;'>SEARCH&nbsp;</B><input name='query' type='text' value='  ENTER KEYWORDS' onBlur='javascript: if(this.value == '') this.value = '  ENTER KEYWORDS';' onFocus = 'javascript: if(this.value == '  ENTER KEYWORDS') this.value ='';' size='20' style='font-family:Arial, Helvetica, sans-serif; font-size:9px; font-weight:bold; color:#493807;'><input type=image src='http://localhost/aseancruise/docroot/aseancruise/images/global/but_search01.gif' width='19' height='19' vspace='3' border='0' align='absmiddle' value='Search' /></div>";
			
			//document.getElementById('google_custom_search').innerHTML = "<form name='qsearch' action='/en/global/search.html'><B style='font-family:Arial, Helvetica, sans-serif; font-size:11px;'>SEARCH&nbsp;</B><input name='query' type='text' value='  ENTER KEYWORDS' onBlur=\'javascript: if(this.value == '') this.value = '  ENTER KEYWORDS';\' onFocus = 'javascript: if(this.value == '  ENTER KEYWORDS') this.value ='';' size='20' style='font-family:Arial, Helvetica, sans-serif; font-size:9px; font-weight:bold; color:#493807;'><input type=image src='http://localhost/aseancruise/docroot/aseancruise/images/global/but_search01.gif' width='19' height='19' vspace='3' border='0' align='absmiddle' value='Search' /></form>";
			//document.getElementById('google_custom_search').innerHTML = "<form name='qsearch' action='/en/global/search.html'></form>";
		
			document.getElementById('google_custom_search').innerHTML = "<form id='qsearch' name='qsearch' action='/en/global/search.html'><B style='font-family:Arial, Helvetica, sans-serif; font-size:11px;'>SEARCH&nbsp;</B><input id='query' name='query' type='text' value='  ENTER KEYWORDS' onBlur='onBlurAction()' onFocus='onFocusAction()' size='20' style='font-family:Arial, Helvetica, sans-serif; font-size:9px; font-weight:bold; color:#493807; margin-left:5px;'><input type=image src='/docroot/aseancruise/images/global/but_search01.gif' width='19' height='19' vspace='3' border='0' align='absmiddle' style='margin-left:5px;' value='Search' /></form>";
			
		}
		
		function onFocusAction()
		{
				//alert("reach here");
				var tempVal = document.getElementById('query');
				
				if(tempVal.value == '  ENTER KEYWORDS') tempVal.value = '';
		}
		
		function onBlurAction()
		{
				//alert("reach here");
				var tempVal2 = document.getElementById('query');
				
				if(tempVal2.value == '') tempVal2.value = '  ENTER KEYWORDS';
		}
		
		//changeDivHTML();
		
