	
	function openEditHTMLWindow(objCallerName){
		var winWidth = 475;
		var winHeight = 350;
		var posX = (window.screen.width - winWidth)/2;
		var posY = (window.screen.height - winHeight)/2;
		var properties = "top = " + posY + " , left = " + posX 
		+ " , width = " + winWidth + " , height = " + winHeight + ",status=no,scrollbars=no,resizable=yes";
		var scriptLocation = "edit_html.jsp?name=" + objCallerName;
		var editHTMLWindow = window.open(scriptLocation,"editHTMLWindow",properties);
	}
	
	/* Trim string */
	function trim(s){
		var tmp = s;
		var i = 0;
		for(i=0;i<tmp.length;i++)if(tmp.charAt(i) != ' ')break;
			
		if(i<=tmp.length)tmp = tmp.substring(i,tmp.length);
		
		for(i=tmp.length-1;i>=0;i--)if(tmp.charAt(i) != ' ')break;
			
		if(i>0)tmp = tmp.substring(0,i+1);
		
		return tmp;
	}
	
