var m__error_message       = new String ("");
/*
 * 
 */

function m__check_error () {
    if (m__error_message.length) {
	var myErr = '<div style="padding: 5px; width: 620px; clear: both; background-color: #FADCEA; ' + 
	    ' border-bottom: 2px solid rgb(204, 204, 204); border-right: 2px solid rgb(204, 204, 204); background-repeat: no-repeat;" id="comment_box">' +
	    '<h3 style="margin-top: 3px; font-size: 18px; color: #FF0000;" class="h3">We' + "'" + 're sorry</h3>' +
	    '<p style="font-family: Arial,Helvetica,sans-serif; font-size: 12px;">' +
	    m__error_message +
	    '</p></div>';

	$("div.thirds-two").prepend(myErr);
    }
    return true;
}

$(document).ready(function () {
			m__check_error();
			return true;
		});
true;


