function CloseGo(url){
	$("#dim").fadeOut();
	window.location.assign(url); 
	return false;
}

$(document).ready(function(){
$("#dim").css("height", $(document).height());
$(".alert").click(function(){
$("#dim").fadeIn();
return false;
});
$(".close").click(function(){
$("#dim").fadeOut();
return false;
});

});
$(window).bind("resize", function(){
$("#dim").css("height", $(window).height());
});