// JavaScript Document
function this_form_submit(P){
	function this_message_alert(N){
		$('body').each(function(){
			var w=$(window);
			$(this).prepend('<div class="this-mute" style="width:'+w.width()+'px;height:'+w.height()+'px;"></div>');
			$('.this-mute').css({opacity: 0.5});
			$(this).prepend('<div class="this-sup-message3" style="position:absolute;z-index:10000;width:0px;height:0px;border:6px solid #555555;background:#ffffff;text-align:center;"></div>');
			$('.this-sup-message3').each(function(){
				$(this).center();
				var offset = $(this).offset();
				$(this).animate({width: '800px', left: offset.left-403+'px'}, 300,
					function(){$(this).animate({height: '500px', top: offset.top-253+'px'}, 300,
						function(){
							var offset2 = $(this).offset();
							$('#yand-map-'+N).css({left: offset2.left+6+'px', top: offset2.top+6+'px'});
							$('#yand-map-'+N).animate({opacity: 'show'}, 'slow');
						}
					);}
				);
			});
		});
	}
	this_message_alert(P);
}
function this_form_close(N){
	$('.this-mute').remove();
	$('.this-sup-message3').remove();
	$('#yand-map-'+N).css({display: 'none'});
}