function HaveYourSay()
{
	$('#DIV_POPUP').load('global_customer_comment_add.php');
	LoadPopup('DIV_POPUP', '');
}

function PostMyComment()
{
	if(CCFormValidator.exec())
	{
		ShowLoading('formsubmit');
		$.post(
						'misc_script.php', 
						$('#frmCommentAdd').serialize(), 
						function(status) {
							if(1 == status)
								alert('Thanks for your comments! After approval your comments will be published.');
							else
								alert('Error occured while processing your request!');

							HideLoading();
							ClosePopup('DIV_POPUP');
						}
					);
	}

	return false;
}
