﻿
function DecodeEmail(a, s) {
m=""; 
for (i=0; i<a.length; i++) m+=String.fromCharCode(a.charCodeAt(i)-1);
m = ('<a' + s + ' href="mailto:' + m + '">' + m + '</a>');
document.write(m);
}

function FakeLink(obj, flag) {
	if (flag) {
		obj.style.cursor = 'hand';
		obj.style.textDecoration = 'underline';
	} else {
		obj.style.cursor = 'default';
		obj.style.textDecoration = '';
	}
}

function checkform() {
	var user = document.getElementById("txtUser");

	var pwd = document.getElementById("txtPwd");

}

