	<!--

	/*
	Highlight and Copy form element script- By Dynamicdrive.com
	For full source, Terms of service, and 100s DTHML scripts
	Visit http://www.dynamicdrive.com
	*/

	//specify whether contents should be auto copied to clipboard (memory)
	//Applies only to IE 4+
	var copytoclip=1

	function HighlightAll(theField) {
	var tempval=eval("document."+theField)
	tempval.focus()
	tempval.select()

	if (document.all&&copytoclip==1){

	therange=tempval.createTextRange()

	therange.execCommand("Copy")

	window.status="Contents copied to your clipboard, now go to your Messenger chat window and press CONTROL+V"

	setTimeout("window.status=''",1800)

	}

	}

	//-->
