var data = "article.title="+encodeURIComponent(title)+"&article.content="+encodeURIComponent(content)+"&comment="+encodeURIComponent(comment)+"&reprint="+encodeURIComponent(reprint)+
"&categoryId="+encodeURIComponent(categoryId)+"&status="+encodeURIComponent(status); createXMLHttpRequest(); xmlrequest.open("GET","draft_save",false); xmlrequest.setRequestHeader("Content-Type","application/x-www-form-urlencoded"); xmlrequest.onreadystatechange = processResponse; xmlrequest.send(data);