function showSendMailCaption()
{
	jQuery("#sendMailCaption").show("slide", {direction : "up"}, 1000, function() { jQuery("#MarketSendFormMails").focus(); })  ;
	if(document.getElementById('sendMailError') != null)
		jQuery("#sendMailError").show("slide", {direction : "up"}, 1000)  ;
}

function initSendMailCaption()
{
	jQuery("#sendMailCaption").show()  ;
	jQuery("#MarketSendFormMails").focus();
	if(document.getElementById('sendMailError') != null)
		jQuery("#sendMailError").show("slide", {direction : "up"}, 1000)  ;
}

function hideSendMailCaption()
{
	jQuery("#sendMailCaption").hide("slide", {direction : "up"}, 1000)  ;
	document.getElementById('MarketSendFormMails').value = '' ;
	document.getElementById('MarketSendFormMessage').value = '' ;
	if(document.getElementById('sendMailError') != null)
		document.getElementById('sendMailError').style.display = 'none' ;
}