﻿function delConfirm() { 
	if (confirm("Bạn có chắc chắn xóa?")) { 
		return true;
	}else{
		return false;
	}
} 

function setFocus(id){
	var control = document.getElementById(id);
	if (control != null) 
		control.focus();	
}

function showDate(){
	<!-- Begin
	var months=new Array(13);
	months[1]="1";
	months[2]="2";
	months[3]="3";
	months[4]="4";
	months[5]="5";
	months[6]="6";
	months[7]="7";
	months[8]="8";
	months[9]="9";
	months[10]="10";
	months[11]="11";
	months[12]="12";
	var week = new Array(7);
	week[0] = "Chủ Nhật";
	week[1] = "Thứ Hai";
	week[2] = "Thứ Ba";
	week[3] = "Thứ Tư";
	week[4] = "Thứ Năm";
	week[5] = "Thứ Sáu";
	week[6] = "Thứ Bảy";


	var time=new Date();
	var lmonth=months[time.getMonth() + 1];
	var date=time.getDate();
	var year=time.getYear();
	var day = time.getDay();
	var lday = week[day];
	if (year < 2000)    // Y2K Fix, Isaac Powell
	year = year + 1900; // http://onyx.idbsu.edu/~ipowell
	document.write(lday+", "+ date  + "/");
	document.write(lmonth+ "/" + year );
	// End -->
	// End -->
}

