function login(thistag,clssName,btnElement) {
	var x = document.getElementById("input").value;
	doTransform("log",x);
 
}
function doTransform(myID, uname){
	var resultDocument = "The Username and/or Password entered are incorrect.";
	if (window.ActiveXObject){
		document.getElementById(myID).innerHTML =  resultDocument;
	}else{
		// create an empty element node
		// without an ID, any attributes, or any content
		var sp1 = document.createElement("div");
		sp1.setAttribute("id", myID);
		// build a reference to the existing node to be replaced
		var sp2 = document.getElementById(myID);
		var parentDiv = sp2.parentNode;
		// replace existing node sp2 with the new span element sp1
		parentDiv.replaceChild(sp1, sp2);
		document.getElementById(myID).appendChild(document.createTextNode(resultDocument));
	}
}