// JavaScript Document



function admin_prompt(){
	var conf = prompt("what now big man?");
	if (conf=="post") {
		var w_loc = "index.php?id=post_pre&usn="+ prompt("Name:");
		window.location = w_loc;
	} else {
		window.location = "index.php?id="+conf;
	}
}




