<!--
	// select and copy
	function copy_vacemail()
	{
		var copytoclip=1
		var tempval = document.form1.vacemail;
		var textz = document.form1.vacemail.value;
		var textz = textz.replace("(at)", "@");
		document.form1.vacemail.value = textz;
		//alert(document.form1.vacemail.value);
		//tempval.focus()
		tempval.select()
		if(document.all && copytoclip == 1)
		{
			therange=tempval.createTextRange()
			therange.execCommand("Copy")
		}
	}
	// select and copy
	function copy_vacemail2()
	{
		var copytoclip=1
		var tempval = document.form1.vacemail2;
		var textz = document.form1.vacemail2.value;
		var textz = textz.replace("(at)", "@");
		document.form1.vacemail2.value = textz;
		//alert(document.form1.vacemail2.value);
		//tempval.focus()
		tempval.select()
		if(document.all && copytoclip == 1)
		{
			therange=tempval.createTextRange()
			therange.execCommand("Copy")
		}
	}
// -->