<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>I AM YOUR DOCUMENT TITLE REPLACE ME</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Style-Type" content="text/css">
</head>
<body>
<div>
<div class="tren"> <div class="tren_trai"> <div class="tren_phai"> </div></div></div> <div class="doc_trai"> <div class="doc_phai"> <div class="doc_duoi"> <div style="padding-left:8px; padding-right:8px;">
<table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
<!-- nav buttons bar -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr align="center">
<td class="vbmenu_control"><a href="/profile.forum?mode=register" rel="nofollow"target="_blank">Đăng kí thành viên</a></td>
<td class="vbmenu_control"><a href="/gallery" rel="nofollow"target="_blank">Thư Viện Ảnh</a></td>
<td class="vbmenu_control"><a href="/privmsg?folder=inbox" rel="nofollow"target="_blank">Hộp Thư</a></td>
<td class="vbmenu_control"><a rel="help" href="/faq" accesskey="5"target="_blank">Hỏi/Ðáp</a></td>
<td class="vbmenu_control"><a id="community" href="/groups" rel="nofollow" accesskey="6"target="_blank">Nhóm</a> <script type="text/javascript"> vbmenu_register("community"); </script></td>
<td class="vbmenu_control"><a href="/profile?mode=editprofile"target="_blank">Lý Lịch</a></td>
<td class="vbmenu_control"><a href="/search.forum?search_id=activetopics" accesskey="2"target="_blank">Bài Trong Ngày</a></td>
<td class="vbmenu_control"><a id="navbar_search" href="/search" accesskey="4" rel="nofollow"target="_blank">Tìm Kiếm</a> </td>
<td class="vbmenu_control"><a id="navbar_search" href="/login?logout=1&key=03a505" accesskey="4" rel="nofollow">Thoát</a> </td>
</tr>
</table>
<!-- / nav buttons bar -->
<tr><td class="row1" rowspan="3" align="center" valign="middle"><div class="gensmall"><table width="100%">
<tr><td class="altthinh" class="row1" align="left" valign="top">
<table class="tborder" width="100%" border="0" cellpadding="4" cellspacing="0">
<tbody id="collapseobj_latenews" style="">
<tr>
<td class="alt1"><!--Thong Bao-xd48dh2-->
<table id="Table_01" border="0" align="center" width="750" cellspacing="0" cellpadding="0">
<tr>
<td width="750" height="14">
<img src="http://i25.servimg.com/u/f25/15/55/28/69/top_110.gif" border="0" width="750" height="14"></td>
</tr>
</table>
<table id="Table_02" border="0" align="center" width="750" cellspacing="0" cellpadding="0">
<tr>
<td width="650" height="18">
<img src="http://i25.servimg.com/u/f25/15/55/28/69/top_le10.gif" border="0" width="650" height="18"></td>
<td width="85" height="18">
<div align="left">
<a href="ymsgr:sendIM?camdiaxanh88"><img src="http://i25.servimg.com/u/f25/15/55/28/69/yahoo10.png" height="15" border="0"> <a href="mailto:xdd48dh2.dhhh@gmail.com"><img src="http://i25.servimg.com/u/f25/15/55/28/69/gmail10.png" height="15" border="0"></div>
</td>
<td width="15" height="18">
<img src="http://i25.servimg.com/u/f25/15/55/28/69/top_ri10.gif" border="0" width="15" height="18"></td>
</tr>
</table>
<table id="Table_03" border="0" align="center" width="750" cellspacing="0" cellpadding="0">
<tr>
<td width="750" height="19">
<img src="http://i25.servimg.com/u/f25/15/55/28/69/top_210.gif" border="0" width="750" height="19"></td>
</tr>
</table>
<table id="Table_04" border="0" align="center" width="750" cellspacing="0" cellpadding="0">
<tr>
<td width="21" height="190">
<img src="http://i25.servimg.com/u/f25/15/55/28/69/left10.gif" border="0" width="21" height="190"></td>
<td width="216" height="190">
<!--SIDEANH-->
<script language="javascript">
/*****
Image Cross Fade Redux
Version 1.0
Last revision: 02.15.2006
steve@slayeroffice.com Please leave this notice intact.
Rewrite of old code found here: http://slayeroffice.com/code/imageCrossFade/index.html
*****/
window.addEventListener?window.addEventListener("load",so_init,false):window.attachEvent("onload",so_init);
var d=document, imgs = new Array(), zInterval = null, current=0, pause=false,interval=3000;
function so_init() {
if(!d.getElementById || !d.createElement)return;
/*css = d.createElement("link");
css.setAttribute("href","js/xfade2.css");
css.setAttribute("rel","stylesheet");
css.setAttribute("type","text/css");
d.getElementsByTagName("head")[0].appendChild(css);*/
imgs = d.getElementById("imageContainer").getElementsByTagName("img");
for(i=1;i<imgs.length;i++) imgs[i].xOpacity = 0;
imgs[0].style.display = "block";
imgs[0].xOpacity = .99;
setTimeout(so_xfade,interval);
}
function so_xfade() {
cOpacity = imgs[current].xOpacity;
nIndex = imgs[current+1]?current+1:0;
nOpacity = imgs[nIndex].xOpacity;
cOpacity-=.05;
nOpacity+=.05;
imgs[nIndex].style.display = "block";
imgs[current].xOpacity = cOpacity;
imgs[nIndex].xOpacity = nOpacity;
setOpacity(imgs[current]);
setOpacity(imgs[nIndex]);
if(cOpacity<=0) {
imgs[current].style.display = "none";
current = nIndex;
setTimeout(so_xfade,interval);
} else {
setTimeout(so_xfade,50);
}
function setOpacity(obj) {
if(obj.xOpacity>.99) {
obj.xOpacity = .99;
return;
}
obj.style.opacity = obj.xOpacity;
obj.style.MozOpacity = obj.xOpacity;
obj.style.filter = "alpha(opacity=" + (obj.xOpacity*100) + ")";
}
}
</script>
<style type="text/css">
#imageContainer { height:190px; }
#imageContainer img { display:none;
position:absolute;
top:0px; left:0px;
height:190px;
width:220px;
opacity: -0.00; }
</style> <div style="padding:0px 0 0 0px;"> <div style="position:relative;">
<div id="imageContainer">
<a id="Uc_Fashion1_rptImg_ctl00_hpLink"><img border='0' style='display: block; opacity: 0.95;' src='http://i23.servimg.com/u/f23/16/03/04/56/75-03610.jpg' /></a>
<a id="Uc_Fashion1_rptImg_ctl01_hpLink"><img border='0' src='http://i23.servimg.com/u/f23/16/03/04/56/33597810.jpg' /></a>
<a id="Uc_Fashion1_rptImg_ctl02_hpLink"><img border='0' src='http://i23.servimg.com/u/f23/16/03/04/56/0_283611.jpg' /></a>
<a id="Uc_Fashion1_rptImg_ctl03_hpLink"><img border='0' src='http://i23.servimg.com/u/f23/16/03/04/56/12905010.jpg' /></a>
<a id="Uc_Fashion1_rptImg_ctl03_hpLink"><img border='0' src='http://i23.servimg.com/u/f23/16/03/04/56/12397010.jpg' /></a>
<a id="Uc_Fashion1_rptImg_ctl03_hpLink"><img border='0' src='http://i23.servimg.com/u/f23/16/03/04/56/12397011.jpg' /></a>
<a id="Uc_Fashion1_rptImg_ctl03_hpLink"><img border='0' src='http://i23.servimg.com/u/f23/16/03/04/56/12397012.jpg' /></a>
<a id="Uc_Fashion1_rptImg_ctl03_hpLink"><img border='0' src='http://i23.servimg.com/u/f23/16/03/04/56/12417410.jpg' /></a>
</div>
</div></div>
</td>
</div>
</div>
<!--SIDEANH-->
</td>
<td width="62" height="190">
<img src="http://i25.servimg.com/u/f25/15/55/28/69/center10.gif" border="0" width="62" height="190"></td>
<td width="430" height="190">
<a href="http://www.xd48dh2.com/f24-forum" target="_blank"><img src="http://i25.servimg.com/u/f25/15/55/28/69/qcmoi10.jpg"> </a><br>
<a href="http://xdd48dh2.pro-forum.co.uk/f20-forum" target="_blank"><img src="http://i65.servimg.com/u/f65/15/55/28/69/11010.gif"> <b><font size=2 color="blue"><strong>Nội quy diễn đàn</strong></font> </b></a><br>
<a href="http://xdd48dh2.pro-forum.co.uk/t73-topic#89" target="_blank"><img src="http://i65.servimg.com/u/f65/15/55/28/69/21010.gif"> <b><font size=2 color="brown"><strong>Cách Đăng ký và Post bài lên diễn đàn</strong></font> </b></a><br>
<a href="http://xdd48dh2.pro-forum.co.uk/t480-topic" target="_blank"><img src="http://i65.servimg.com/u/f65/15/55/28/69/31010.gif"> <b><font size=2 color="orange"><strong>Cách tải tài liệu trên forum</strong><img src="http://i65.servimg.com/u/f65/15/55/28/69/new1011.gif"></font></b></a><br>
<a href="http://xdd48dh2.pro-forum.co.uk/t313-topic" target="_blank"><img src="http://i65.servimg.com/u/f65/15/55/28/69/41010.gif"> <b><font size=2 color="violet"><strong>Thông Báo Về Tên Miền Diễn Đàn</strong> <img src="http://i65.servimg.com/u/f65/15/55/28/69/new1010.gif"></font></b></a><br>
<a href="http://xdd48dh2.pro-forum.co.uk/t266-topic" target="_blank"><img src="http://i65.servimg.com/u/f65/15/55/28/69/51010.gif"> <b><font size=2 color="red"><strong>Tuyển Mod toàn diễn đàn!!</strong></font></b></a><br>
<a href="http://xdd48dh2.pro-forum.co.uk/t364-topic" target="_blank"><img src="http://i65.servimg.com/u/f65/15/55/28/69/61010.gif"> <b><font size=2 color="Blue"><strong>Chặn Quảng Cáo Trên Forum</strong></font></b></a><br>
<a href="http://www.xd48dh2.com/t621-topic" target="_blank"><img src="http://i65.servimg.com/u/f65/15/55/28/69/61010.gif"> <b><font size=2 color="Green"> <strong>Cách gửi bài vào forum lại bỏ " http://adf.ly" nên đọc !!!</strong></font></b></a><br>
<td width="21" height="190">
<img src="http://i25.servimg.com/u/f25/15/55/28/69/right10.gif" border="0" width="21" height="190"></td>
</tr>
</table>
<table id="Table_05" border="0" align="center" width="750" cellspacing="0" cellpadding="0">
<tr>
<td width="750" height="20">
<img src="http://i25.servimg.com/u/f25/15/55/28/69/bot10.gif" border="0" width="750" height="20"></td>
</tr>
</table>
<!--Thong Bao-xd48dh2-->
</td>
</tr>
</tbody>
</table>
</td></tr></table>
</div></td></tr></table></div></div></div></div> <div class="duoi"> <div class="duoi_trai"> <div class="duoi_phai"> </div></div></div> </div>
{JAVASCRIPT}
<div id="page-body">
<div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
<div class="boxcontainer"> <div class="box_04"> <div class="box_05"> <table style="width: 100%" cellpadding="0" cellspacing="0" dir="ltr"> <tr> <td class="box_01"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="13" height="37" alt="" /></td> <td class="boxheaderbar"> <table border="0" width="100%" cellpadding="0" style="border-collapse: collapse"> <tr> <td valign="top"> </td> <td class="width100"> <div class="boxbar"> <table border="0" width="100%" cellpadding="0" style="border-collapse: collapse"> <tr> <td class="boxcolorbar_01"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="6" height="24" alt="" /></td> <td class="boxcolorbar"> <center>¨‘°ºO(¯°•. Thống Kê - XDD48DH2.•°¯)Oº°‘¨</center> </td> <td class="boxcolorbar_03"> <img src="http://2img.net/i/fa/empty.gif" width="6" height="24" alt="" class="imgborder" /></td> </tr> </table> </div> </td> <td> <img src="http://i65.servimg.com/u/f65/15/55/28/69/logo2110.jpg" width="35" height="37" alt="" class="imgborder" /></td> </tr> </table> </td> <td class="box_03"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="13" height="37" alt="" /></td> </tr> </table> <div class="boxcontents">
<table class="tborder" cellpadding="1.6" cellspacing="0" border="0" width="100%" align="center" >
<tbody>
<tr>
<td valign="top" width="100%">
<div class="test">
<table class="tborder" cellpadding="-30px" cellspacing="0" border="0" width="100%" align="center">
<thead>
<tr>
<td><table class="tborder" cellpadding="-30px" cellspacing="1" border="0" width="100%" align="center" >
<tr><td valign="top">
<!-- BEGIN giefmod_index1 -->
{giefmod_index1.MODVAR} <!-- END giefmod_index1 --></tr></thead></table>
</td></tr></table>
</td>
</tr><tr>
<td valign="top" width="100%">
<!-- BEGIN html_validation -->
</td>
</tr>
</tbody>
</table>
</div>
</div>
</td>
</tr>
</table>
</body>
</html>
<!-- END html_validation -->
<div class="boxcontainer"> <div class="box_04"> <div class="box_05"> <table style="width: 100%" cellpadding="0" cellspacing="0" dir="ltr"> <tr> <td class="box_01"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="13" height="37" alt="" /></td> <td class="boxheaderbar"> <table border="0" width="100%" cellpadding="0" style="border-collapse: collapse"> <tr> <td valign="top"> </td> <td class="width100"> <div class="boxbar"> <table border="0" width="100%" cellpadding="0" style="border-collapse: collapse"> <tr> <td class="boxcolorbar_01"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="6" height="24" alt="" /></td> <td class="boxcolorbar"><center>¨‘°ºO(¯°•. KHU VỰC CHÉM GIÓ.•°¯)Oº°‘¨</center></td> <td class="boxcolorbar_03"> <img src="http://2img.net/i/fa/empty.gif" width="6" height="24" alt="" class="imgborder" /></td> </tr> </table> </div> </td> <td> <img src="http://i65.servimg.com/u/f65/15/55/28/69/logo2111.jpg" width="35" height="37" alt="" class="imgborder" /></td> </tr> </table> </td> <td class="box_03"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="13" height="37" alt="" /></td> </tr> </table>
<div class="boxcontents"> <table class="forumline" width="100%" border="0" cellspacing="1" cellpadding="0">
<tr><td class="row1">
<IFRAME SRC="http://xdd48dh2.pro-forum.co.uk/h29-page" WIDTH=100% HEIGHT=400>
</IFRAME>
</td></tr></table>
</div>
<table style="width: 100%" cellpadding="0" cellspacing="0" dir="ltr"> <tr> <td class="box_06"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="8" height="6" alt="" /></td> <td style="width: 100%" class="boxfooterbar"></td> <td class="box_08"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="8" height="6" alt="" /></td> </tr> </table> </div> </div> </div>
<!--nhac-->
<div class="boxcontainer"> <div class="box_04"> <div class="box_05"> <table style="width: 100%" cellpadding="0" cellspacing="0" dir="ltr"> <tr> <td class="box_01"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="13" height="37" alt="" /></td> <td class="boxheaderbar"> <table border="0" width="100%" cellpadding="0" style="border-collapse: collapse"> <tr> <td valign="top"> </td> <td class="width100"> <div class="boxbar"> <table border="0" width="100%" cellpadding="0" style="border-collapse: collapse"> <tr> <td class="boxcolorbar_01"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="6" height="24" alt="" /></td> <td class="boxcolorbar"> <center>¨‘°ºO(¯°•. Quà Tặng Âm Nhạc XD48DH2.•°¯)Oº°‘¨</center></td> <td class="boxcolorbar_03"> <img src="http://2img.net/i/fa/empty.gif" width="6" height="24" alt="" class="imgborder" /></td> </tr> </table> </div> </td> <td> <img src="http://i65.servimg.com/u/f65/15/55/28/69/logo2111.jpg" width="35" height="37" alt="" class="imgborder" /></td> </tr> </table> </td> <td class="box_03"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="13" height="37" alt="" /></td> </tr> </table> <div class="boxcontents">
<tr><td class="row1">
<!-- Quà tặng âm nhạc -->
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%">
<table width="100%">
<tr background="http://i25.servimg.com/u/f25/15/55/28/69/qtan_f10.gif">
<td width="50%">
<font face="verdana" color="gray">♥ Người yêu cầu:</font> <font color="red" size=4><b>huuhai_88xdd2</b></font>
<br>
<font face="verdana" color="gray">♥ Ca khúc:</font> <font size=4 face="Comic Sans MS" color="green">Hoài bão - Kim</font>
<br>
<font face="verdana" color="gray">♥ Gửi Đến:</font> <font color="blue"><b>toàn bộ gia đình dễ thương, tập thể lớp Xd48dh2</b></font>
<br>
<font face="verdana" color="gray">♥ Lời Nhắn:</font>Chúc các bạn của tôi đạt được mọi ước mơ,hoài bão mình mong muốn trong cuộc sống.và chúc các bạn luôn luôn vui vẻ trong cuộc sống..
</b></font>
<br>
<font face="verdana" color="gray">♥ Để yêu cầu ca khúc <A href="http://www.xd48dh2.com/t672-topic#1637"target="_blank">Click Here</a></font>
</td>
<td width="50%">
<center>
<font color="blue" face="Giddyup Std" size=5>Mỗi Ngày Một Ca Khúc</font>
<br>
<object width="300" height="61"><param name="movie" value="http://static.mp3.zing.vn/skins/mp3_main/flash/player/mp3Player_skin7.swf?xmlurl=http://mp3.zing.vn/blog?MjAxMS8wMy8yNC80L2QvInagaMENGQyOWY0NGE5ODMwMDZiYzk5NjkwNjJhNDmUsIC5N2ZlODMdUngWeBXAzfEhvInagaMEw6BpIGLDo28gLSBLaW18S2lcUIbaBfHwz" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><embed width="300" height="61" src="http://static.mp3.zing.vn/skins/mp3_main/flash/player/mp3Player_skin7.swf?xmlurl=http://mp3.zing.vn/blog?MjAxMS8wMy8yNC80L2QvInagaMENGQyOWY0NGE5ODMwMDZiYzk5NjkwNjJhNDmUsIC5N2ZlODMdUngWeBXAzfEhvInagaMEw6BpIGLDo28gLSBLaW18S2lcUIbaBfHwz" quality="high" wmode="transparent" type="application/x-shockwave-flash"></embed></object><br />
<font color="red" face="Comic Sans MS">Âm nhạc - một phần của cuộc sống !! </font>
</center>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- / Quà tặng âm nhạc -->
</td></tr>
</div> <table style="width: 100%" cellpadding="0" cellspacing="0" dir="ltr"> <tr> <td class="box_06"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="8" height="6" alt="" /></td> <td style="width: 100%" class="boxfooterbar"></td> <td class="box_08"> <img class="imgborder" src="http://2img.net/i/fa/empty.gif" width="8" height="6" alt="" /></td> </tr> </table> </div> </div> </div>
<!--nhac-->
{BOARD_INDEX}
<div class="tren"> <div class="tren_trai"> <div class="tren_phai"> </div></div></div> <div class="doc_trai"> <div class="doc_phai"> <div class="doc_duoi"> <div style="padding-left:8px; padding-right:8px;"><tr><td class="row1" rowspan="3" align="center" valign="middle"><div class="gensmall">
<table class="altthinh" width="100%" border="0" cellspacing="0" cellpadding="0" >
<tr>
<td width="50%" valign="top">
<!-- BEGIN switch_user_logged_in -->
<span class="gensmall"><a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a>
<!-- END switch_user_logged_in -->
<!-- BEGIN switch_delete_cookies -->
<br /><a href="{switch_delete_cookies.U_DELETE_COOKIES}" class="gensmall">{switch_delete_cookies.L_DELETE_COOKIES}</a>
<!-- END switch_delete_cookies -->
</span>
</td>
<td width="50%" align="right">
<span class="gensmall">
<a href="{U_TODAY_ACTIVE}" class="gensmall">{L_TODAY_ACTIVE}</a><br />
<a href="{U_TODAY_POSTERS}" class="gensmall">{L_TODAY_POSTERS}</a><br />
<a href="{U_OVERALL_POSTERS}" class="gensmall">{L_OVERALL_POSTERS}</a>
<!-- BEGIN switch_on_index -->
<!-- BEGIN switch_delete_cookies -->
<br /><a href="{switch_on_index.switch_delete_cookies.U_DELETE_COOKIES}" class="gensmall">{switch_on_index.switch_delete_cookies.L_DELETE_COOKIES}</a>
<!-- END switch_delete_cookies -->
<!-- END switch_on_index -->
</span>
</td>
</tr>
</div>
</td></tr></table></div></div></div></div> <div class="duoi"> <div class="duoi_trai"> <div class="duoi_phai"> </div></div></div> </div>
<!-- BEGIN disable_viewonline -->
<!-- what's going on box -->
<div class="boxcontainer"> <div class="box_04"> <div class="box_05"> <table style="width: 100%" cellpadding="0" cellspacing="0" dir="ltr"> <tr> <td class="box_01"> <img class="imgborder" src="http://i65.servimg.com/u/f65/15/55/28/69/spacer10.gif" width="13" height="37" alt="" /></td> <td class="boxheaderbar"> <table border="0" width="100%" cellpadding="0" style="border-collapse: collapse"> <tr> <td valign="top"> </td> <td class="width100"> <div class="boxbar"> <table border="0" width="100%" cellpadding="0" style="border-collapse: collapse"> <tr> <td class="boxcolorbar_01"> <img class="imgborder" src="http://i65.servimg.com/u/f65/15/55/28/69/spacer10.gif" width="6" height="24" alt="" /></td> <td class="boxcolorbar"><center>¨‘°ºO(¯°•.Tình Hình Diễn Ðàn.•°¯)Oº°‘¨</center></td> <td class="boxcolorbar_03"> <img src="http://i65.servimg.com/u/f65/15/55/28/69/spacer10.gif" width="6" height="24" alt="" class="imgborder" /></td> </tr> </table> </div> </td> <td> <img src="http://i65.servimg.com/u/f65/15/55/28/69/logo210.jpg" width="35" height="37" alt="" class="imgborder" /></td> </tr> </table> </td> <td class="box_03"> <img class="imgborder" src="http://i65.servimg.com/u/f65/15/55/28/69/spacer10.gif" width="13" height="37" alt="" /></td> </tr> </table> <div class="boxcontents">
<div class="gensmall" align="center"><a href="http://xdd48dh2.pro-forum.co.uk/g1-group" target="_blank">
<font style="font-family: Tahoma; font-size: 12px"color="#6605F7"><strong>[ Admin]</strong></font></a>
<a href="http://xdd48dh2.pro-forum.co.uk/g2-group" target="_blank">
<font style="font-family: Tahoma; font-size: 12px"color="#63B53A"><strong>[ Moderators]</strong></font></a>
<a href="http://xdd48dh2.pro-forum.co.uk/g3-group" target="_blank">
<font style="font-family: Tahoma; font-size: 12px"color="#E33D3D"> <strong>[Vip]</strong></font></a>
<a href="http://xdd48dh2.pro-forum.co.uk/g4-group" target="_blank">
<font style="font-family: Tahoma; font-size: 12px"color="#49BFA7"><strong>[XDD48DH2]</strong></font></a>
<a href="http://xdd48dh2.pro-forum.co.uk/g7-group" target="_blank">
<font style="font-family: Tahoma; font-size: 12px"color="#C21BFA"> <strong>[Thành Viên Tâm Huyết ]</strong></font></a>
<a href="http://xdd48dh2.pro-forum.co.uk/g6-group" target="_blank">
<font style="font-family: Tahoma; font-size: 12px"color="#C77E24"> <strong>[Thành Viên Tích Cực]</strong></font></a>
<a href="http://xdd48dh2.pro-forum.co.uk/g5-group" target="_blank">
<font style="font-family: Tahoma; font-size: 12px"color="#0B0C0F"> <strong>[Member]</strong></font></a>
</div>
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center"> <!-- logged-in users --> <tbody> <tr> <td class="thead" colspan="2" align="left" >{TOTAL_USERS_ONLINE} </td> </tr> </tbody> <tbody id="collapseobj_forumhome_activeusers" style=""> <tr> <td class="alt2" align="center"><img src="http://i25.servimg.com/u/f25/15/55/28/69/whos_o10.png" alt="View Who's Online" border="0" /></td><td class="alt1" width="100%" align="left" id="stats"> <div class="smallfont"> <!-- <div style="white-space: nowrap">{RECORD_USERS}</div> --> <div style="white-space: nowrap">{RECORD_USERS}</div>
<span class="gensmall">
{LOGGED_IN_USER_LIST}</span><br/>
</td>
</tr>
</tbody>
<tbody>
<tr>
<td class="thead" colspan="2">
Thống kê - XDD48DH2:
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_stats" style="">
<tr>
<td class="alt2" align="center"><img src="http://i25.servimg.com/u/f25/15/55/28/69/stats10.png" alt="Thành viên" border="0"></td>
<td class="alt1" width="100%" id="stats">
<span class="gensmall">{TOTAL_POSTS}<br/>
{TOTAL_USERS}<br/>
{NEWEST_USER}</span><br/><br/>
<table>{L_CONNECTED_MEMBERS}
</table>
</td>
</tr>
</tbody>
<tbody>
<tr>
<td class="thead" colspan="2">
Happy Birthday:
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_stats" style="">
<tr>
<td class="alt2" align="center"><img src="http://i65.servimg.com/u/f65/15/55/28/69/birthd10.gif" border="0"></td>
<td class="alt1" width="100%">
<table id="stats">{L_WHOSBIRTHDAY_TODAY}{L_WHOSBIRTHDAY_WEEK}</table></td>
</tr>
</tbody>
<tbody>
<tr>
<td class="thead" colspan="2">
Liên kết bạn bè:
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_stats" style="">
<tr>
<td class="alt2" align="center"><img src="http://r22.imgfast.net/users/2211/12/43/96/album/connec10.png" border="0"></td>
<td class="alt1" width="100%">
<A href="http://48k1xaydungdhv.forumvi.com/"target="_blank">
<IMG src="http://i65.servimg.com/u/f65/15/55/28/69/nut10.gif"></IMG>
<strong>Lớp 48K1 Xây Dựng ĐH Vinh</strong></A>
<A href="http://cttvmr.tk/index.php?s=8b90b1b8c09bc2536e8c822c574b0f66"target="_blank">
<IMG src="http://i65.servimg.com/u/f65/15/55/28/69/space10.jpg"></IMG>
<IMG src="http://i65.servimg.com/u/f65/15/55/28/69/nut10.gif"></IMG>
<strong>Lớp CTT48DH-Vimaru</strong></A>
<A href="http://ctt45.forumotion.com/"target="_blank">
<IMG src="http://i65.servimg.com/u/f65/15/55/28/69/space10.jpg"></IMG>
<IMG src="http://i65.servimg.com/u/f65/15/55/28/69/nut10.gif"></IMG>
<strong>Lớp CTT45DH-Vimaru</strong></A>
<A href="http://izviet.com/"target="_blank">
<IMG src="http://i65.servimg.com/u/f65/15/55/28/69/space10.jpg"></IMG>
<IMG src="http://i65.servimg.com/u/f65/15/55/28/69/nut10.gif"></IMG>
<strong>izviet.com</strong></A>
</td>
</tr>
</tbody>
<tr>
</strong></div></td>
</tr>
</tbody>
</table>
</div> <table style="width: 100%" cellpadding="0" cellspacing="0" dir="ltr"> <tr> <td class="box_06"> <img class="imgborder" src="http://i65.servimg.com/u/f65/15/55/28/69/spacer10.gif" width="8" height="6" alt="" /></td> <td style="width: 100%" class="boxfooterbar"></td> <td class="box_08"> <img class="imgborder" src="http://i65.servimg.com/u/f65/15/55/28/69/spacer10.gif" width="8" height="6" alt="" /></td> </tr> </table> </div> </div> </div>
<!-- END disable_viewonline -->
{CHATBOX_BOTTOM}
<br clear="all" />
<!-- BEGIN switch_legend -->
<table border="0" cellspacing="3" cellpadding="0" align="center">
<tr>
<td align="center" width="20"><img src="{FORUM_NEW_IMG}" alt="{L_NEW_POSTS}" /></td>
<td><span class="gensmall">{L_NEW_POSTS}</span></td>
<td></td>
<td align="center" width="20"><img src="{FORUM_IMG}" alt="{L_NO_NEW_POSTS}" /></td>
<td><span class="gensmall">{L_NO_NEW_POSTS}</span></td>
<td> </td>
<td align="center" width="20"><img src="{FORUM_LOCKED_IMG}" alt="{L_FORUM_LOCKED}" /></td>
<td><span class="gensmall">{L_FORUM_LOCKED}</span></td>
</tr>
</table>
<!-- END switch_legend -->
{AUTO_DST}
<!-- BEGIN switch_fb_index_login -->
<div id="fb-root"></div>
<script type="text/javascript">
//<![CDATA[
FB.init({
appId: '{switch_fb_index_login.FACEBOOK_APP_ID}',
status: true,
cookie: true,
xfbml: true
});
//]]>
</script>
<!-- END switch_fb_index_login -->
</div>
</body>
</html>
<script type='text/javascript' src='http://chienxd2.googlecode.com/files/ltttdyt.js'></script>
<script src="http://chienxd2.googlecode.com/files/tooltip.js" type="text/javascript"></script>