/*main application js*/

function removeSelect(objname){
	var obj=GetObj(objname);
	while(obj.length>0){
		obj.remove(0);
	}
	
}
/*设置htmleditor的可编辑模式*/
function setEditMode(id){
		window.top.document.getElementById(id).contentWindow.eval('setEditMode()');

}