// JavaScript Document
//from epi
function popup(url,width,height)
{
	OpenWin = this.open(url,"_blank", "toolbar=no,menubar=no,location=no,scrollbars=no,status=no,resize=no,resizable=yes,width="+width+",height="+height+",top=100,left=100'");
}

function select_room(id_room,title_room)
{
	opener.document.forms['frmdatphong'].elements['room_name'].value = title_room;
	opener.document.getElementById("select_room").innerHTML = title_room;
	window.close();
}