﻿function writeTime(s)
{
	
	var mydate=new Date(s);
	
	var year = mydate.getFullYear();
	
	var month = mydate.getMonth() + 1;
	if (month < 10)
		month = "0" + month;
	var day = mydate.getDate();
	if (day < 10)
		day = "0" + day;

	var dayw = mydate.getDay();
	
	var hour = mydate.getHours();
	if (hour < 10)
		hour = "0" + hour;
	
	var minute=mydate.getMinutes();
	if (minute < 10)
		minute = "0" + minute;
	var dayarray=new Array("Chủ nhật","Thứ hai","Thứ ba","Thứ tư","Thứ năm","Thứ sáu","Thứ bảy");
	document.write(dayarray[dayw]+", "+day+"/"+month+"/"+year+",&nbsp;"+hour+":"+minute+" (GMT+7)");
}
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{

 if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  
  popUpWin = open('', 'popUpWin', 'resizable=yes,status=no,menubar=no,scrollbars=no,left='+left+',top='+top+',height='+height+',width='+width+'');
  popUpWin.focus();
  var head2 = '<html><head><title>View Image full</title></head>';
  var body2 = '<body topmargin="0" leftmargin="0" bottommargin="0" rightmargin="0"><img src="'+URLStr+'"><script>reSize();</script></body></html>';
  var script_ = '<script>function reSize(){window.resizeTo(document.images[0].width,document.images[0].height+20); window.setTimeout("reSize()",500); }</script>';
  popUpWin.document.write(head2  + script_+ body2);
}


