function sitemap_(){

	$("body").append("<div id='sitemap'></div><div id='win_overlay'></div>");
	
	$("#sitemap").show();
	
	$("#sitemap").css({marginLeft: parseInt((($(window).width() - 800) / 2)) + 'px',top: '50px'});
	
	$.ajax({
		type: "POST",
		url: "sitemap.php",
		cache: false,
		error: function(rq, err, e) {alert('sitemap.php' + err);},
		success: function(resp){
			$("#sitemap").html(resp);
		}
	});

}

function login_(){

	$("body").append("<div id='login'></div><div id='win_overlay'></div>");
	
	$("#login").show();
	
	$("#login").css({marginLeft: parseInt((($(window).width() - 570) / 2)) + 'px',top: '50px'});
	
	$.ajax({
		type: "POST",
		url: "login.php",
		cache: false,
		error: function(rq, err, e) {alert('login.php' + err);},
		success: function(resp){
			$("#login").html(resp);
		}
	});

}
