/*
Auto tabbing script- By JavaScriptKit.com
http://www.javascriptkit.com
This credit MUST stay intact for use
*/
function autotab(original,destination){
	if (original.getAttribute&&original.value.length==original.getAttribute("maxlength"))
		destination.focus()
}
function confirmDel(msg, delUrl) {
	if(msg != ''){
  		message = msg;
	} else {
		msg = 'Are you sure you want to delete this record?';
	}
	if (confirm(msg)) {
		document.location = delUrl;
	}
}