	/*txt fields*/		
	function clearText(thefield){
		if (thefield.defaultValue==thefield.value)
			thefield.value = ""
	} 
	
	function setBackText(thefield){
		if (thefield.value=="")
			thefield.value = thefield.defaultValue;
	} 
	
	//fckeditor // update editors content
	function getEditorContent(instanceName) {             
		var oEditor = FCKeditorAPI.GetInstance(instanceName) ;
   	    return oEditor.GetXHTML( true ); 		      
	} 
/*
	//to clear default field value
	function clearText(thefield){
		if (thefield.defaultValue==thefield.value)
			thefield.value = ""
	} 
	
	function setBackText(thefield){
		if (thefield.value=="")
			thefield.value = thefield.defaultValue;
	} 
*/
