var commentWindow;

function weblogComments(id){
	commentWindow = window.open("missionTripWeblogComments.aspx?id=" + id, "commentWindow",'width=550,height=450,scrollbars=yes,resizable=yes');
}
function closeCommentWindow(reload){
	commentWindow.close();
	if (reload) {
		window.document.getElementById("rebindComments").value = "yes";
		window.document.getElementById("form1").submit();
	}
}