I see that you have already sorted out the line break issue, but to answer your question regarding the use of POST rather than GET for your AJAX, take a closer look at this part:
Code:
ajaxRequest.open("GET", "sendreview.php" +
queryString, true);
ajaxRequest.send(null);
You might be able to guess what needs to be changed there to get rolling with a POST request.