function openThread(){
	if($("threadbox").style.display == 'none'){
		$("threadbox").style.display = 'block';
		$("threadframe").src = "edit/index.php?md=1";
	}else{
		$("threadbox").style.display = 'none';
	}
}

function openRes(sid){
	if($("resbox").style.display == 'none'){
		$("resbox").style.display = 'block';
		$("resframe").src = "edit/index.php?md=2&sid=" + sid;
	}else{
		$("resbox").style.display = 'none';
	}
}

function $(str){ return document.getElementById(str); }
