// JavaScript Document

function select_all(id){
	document.getElementById(id).select();
}

function open_editor(src){
	window.open('editor.php?src='+src, '', 'width=700,height=300,toolbar=no');
}
