function writeReview()
{
	jQuery('#divPostComments').show();
}

function cancelPost()
{
	jQuery('#divPostComments').hide();
}
jQuery(document).ready(function()
{
	if (jQuery('.ul_message_box').length)
	{
		document.location.href = '#post';
	}
	if (!jQuery('#txtComments').text().length)
	{
		jQuery('#txtComments').text('Type comments here');
		jQuery('#txtComments').toggleVal({focusClass: "hasFocus",changedClass: "isChanged"});
	}
});