function cop1_general(){}
function general(event){}
function clean(IdName){
	var mdiv = document.getElementById(IdName);
	var count = mdiv.childNodes.length;
	var anode;
	for (var i=0; i<count; i++){
		anode = mdiv.removeChild(mdiv.firstChild);
	}
}