<!--
	// select and copy
	function copy_vacemail()
	{
		var copytoclip=1
		var tempval = document.form1.vacemail;
		//tempval.focus()
		tempval.select()
		if(document.all && copytoclip == 1)
		{
			therange=tempval.createTextRange()
			therange.execCommand("Copy")
		}
	}
// -->
