function convertEmail(name) {
	var theValue = document.getElementById(name).value;
	theValue.toString().replace("@", "+");
	document.getElementyById(name).value = theValue;
}

	    					function changeDiv(divname, action) {

									if (action == "show") {

										document.getElementById(divname).style.display='block';

									} else if (action == "toggle") {

										if (document.getElementById(divname).style.display == 'none') {

											document.getElementById(divname).style.display='block';

										} else {

											document.getElementById(divname).style.display='none';

										}

									} else {

										document.getElementById(divname).style.display='none';

									}

								}

								function popUp(URL) {

									newwindow=window.open(URL, null, 'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1');

									if (window.focus) {newwindow.focus()}

								}

								function ClipBoard()

								{

									holdtext.innerText = copytext.innerText;

									Copied = holdtext.createTextRange();

									Copied.execCommand("Copy");

								}

								function confirmation(message, nextpage) {

									var answer = confirm(message)

									if (answer) {

										window.location = nextpage;

									}

								}

								function promptuser(question, nextpage)

								{

									var answer = prompt(question, "");

									if (answer != null) {

										window.location = nextpage + answer;

									}

								}

