	$(document).ready(function(){
				$(".login").colorbox({width:365, height:190, iframe:true, transition:"fade", onClosed:function(){location.reload(true);}});
				$(".editor").colorbox({width:"620px", height:"610px", iframe:true, transition:"fade", onClosed:function(){location.reload(true);}});
				$(".meta").colorbox({width:"400px", height:"340px", iframe:true, transition:"fade", onClosed:function(){location.reload(true);}});
			});
	
		function posting (to,p) {
		  var myForm = document.createElement("form");
		  myForm.method="post" ;
		  myForm.action = to ;
		  for (var k in p) {
			var myInput = document.createElement("input") ;
			myInput.setAttribute("name", k) ;
			myInput.setAttribute("value", p[k]);
			myForm.appendChild(myInput) ;
		  }
		  document.body.appendChild(myForm) ;
		  myForm.submit() ;
		  document.body.removeChild(myForm) ;
		}
