// JavaScript Documentfunction conNumb(){	var numb_a = Math.floor((Math.random() * 8+1));var numb_b = Math.floor((Math.random() * 8+1));var alphaList = new Array('a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z');var numb_c = Math.floor((Math.random() * alphaList.length));var uID = document.getElementById("firstName").value+'_'+numb_a+alphaList[numb_c]+numb_b;document.getElementById('confirm').value = uID;var now = new Date;//var rlist = (now.getMonth()+1)+'_'+now.getFullYear()+'.htm';var mydate = now;document.getElementById('fulldate').value = mydate;}function currDate(){var now = new Date;var myfilename = (now.getMonth()+1)+'_'+now.getFullYear()+'.htm';var mytime = now.getHours()+':'+now.getMinutes();document.getElementById('filedate').value = myfilename;document.getElementById('subtime').value = mytime;}//showme scriptfunction showMe(mystate) {	document.getElementById('services').style.display = mystate;}