function makeCommentsBox(videoId,categoryId){

var videoId=videoId;
var categoryid=categoryId;

if (window.location.hostname=='cumesoft.com')
	var url='/llagosteratv/test/tv/inc/commentsbox.ajax.php?videoId='+videoId+'&categoryId='+categoryId;
else
	var url='/test/tv/inc/commentsbox.ajax.php?videoId='+videoId+'&categoryId='+categoryId;
	
var placeIn='comments';

		
		var myAjax = new Ajax.Updater(
			{success: placeIn},
			url,
			{
				method: 'get',
				onFailure:reportAjaxError,
				evalScripts:true
			}
			);	
}



 
 
 function completeRequest(originalRequest) {
    document.getElementById('temp').innerHTML = originalRequest.responseText;
  }

