// JavaScript Document
function menuReply()
{
	var f=$('menu_reply');
	if (isBlank(f.replyContent, "留言内容")) return false;
	new Ajax.Request('/addcompanyreplyprocess.html', {
	method: 'post',
	parameters: f.serialize(),
	onSuccess: function(transport, json)
	{
		$('menu_reply').reset();
		alert("留言成功!");
	} }); 
}
function formReply()
{
	var f=$('replyForm');
	if (isBlank(f.replyContent, "留言内容")) return false;
	new Ajax.Request('/addcompanyreplyprocess.html', {
	method: 'post',
	parameters: f.serialize(),
	onSuccess: function(transport, json)
	{
		$('replyForm').reset();
		alert(transport.responseText);
		alert("留言成功!");
	} }); 
}
