$(document).ready(function(){
		$("#pop_style").hide();
	});
		function openBox(){ 
			$('#mask').css({'width':($(document).width()),'height':($(document).height())});
			$("#pop_style").css({top:"150px",left:($(document).width()/2)-$("#pop_style").width()/2});
			 $('#mask').fadeIn(500);
			$('#mask').fadeTo(500,.7);
			$("#pop_style").show("slow");
			
		};
	$(document).ready(function(){
		$("input[name=close]").click(function(){
			$("#pop_style").hide(500);
			$("#mask").fadeOut(1000);
		});
	});
