function popup(pic,text,w,h){
if (!w && !h)   {w = 480; h = 450; }
pop_win=window.open("","popup","width="+w+",height="+h+",top=0,left=0,scrollbars=no,resizable=no,status=no");
pop_win.document.open();
pop_win.document.writeln("<html>");
pop_win.document.writeln("<head>");
pop_win.document.writeln("<meta http-equiv='Content-Type' content='text/html; charset=windows-874'>");
pop_win.document.writeln("<meta http-equiv='Content-Language' content='th'>");
pop_win.document.writeln("<title>www.Homedd.com</title>");
pop_win.document.writeln("<style type='text/css'>");
pop_win.document.writeln("<!--");
pop_win.document.writeln("a:link { color: #005CA2; text-decoration: none}");
pop_win.document.writeln("a:visited { color: #005CA2; text-decoration: none}");
pop_win.document.writeln("a:active { color: #0099FF; text-decoration: underline}");
pop_win.document.writeln("a:hover { color: #0099FF; text-decoration: underline; font-weight: bolder}");
pop_win.document.writeln("-->");
pop_win.document.writeln("</style>");
pop_win.document.writeln("</head>");
pop_win.document.writeln("<body bgcolor='#FFFFFF' link='#005CA2' vlink='#005CA2' alink='#0099FF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
pop_win.document.writeln("<table width='100%' border='0' cellspacing='5' cellpadding='5'><tr><td>");
pop_win.document.writeln("&nbsp<center><img src='" + pic + "'></center><br></td></tr>");
if (text !="" && text){
pop_win.document.writeln("  <tr><td><font face='MS Sans Serif' size='2'>" + text + "</font></td></tr>");
}
pop_win.document.writeln("</table>");
pop_win.document.writeln("<p align='center'><a href='javascript:self.close();'><font face='MS Sans Serif' size='3'>»Ô´Ë¹éÒµèÒ§¹Õé</font></a></p>");
pop_win.document.writeln("</body>");
pop_win.document.writeln("</html>");
pop_win.document.close();
}