/*************************************************
*	Mo mot window popup va ghi noi dung ra cua so popup
**************************************************/
function PrintAlert(height, width, css_file_name, title, content)
{
	content = new String(content);
	content = content.replace('&lt;', '<');
	content = content.replace('&gt;', '>');
	vtop = Math.round((screen.height - height) / 2);
	vleft = Math.round((screen.width - width) / 2);
	w=open('about:blank', 'replace', 'fullscreen=no, height=' + height + ', width=' + width + ', toolbar=no, menubar=no, resizable=no, scrollbars=no, status=no top=' + vtop + ', left=' + vleft);
	w.document.writeln('<html>');
	w.document.writeln('<head>');
	w.document.writeln('<title>www.haiphong.gov.vn</title>');
	w.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">');
	w.document.writeln('<link rel="stylesheet" href="' + css_file_name + '" type="text/css">');
	w.document.writeln('</head>');
	w.document.writeln('<body topmargin=3 leftmargin=0 marginheight=0 marginwidth=0 class=body_alert>');
	w.document.writeln('<table class="Alert">');
	w.document.writeln('<tr>');
	w.document.writeln('<td class=AlertTitle>');
	w.document.writeln(title);
	w.document.writeln('</td>');
	w.document.writeln('</tr>');
	w.document.writeln('<tr>');
	w.document.writeln('<td class=AlertContent>');
	w.document.writeln(content);
	w.document.writeln('</td>');
	w.document.writeln('</tr>');
	w.document.writeln('</table>');
	w.document.writeln('</body>');
	w.document.writeln('</html>');
	w.document.title = title;
	return false;
}
