/*
	Module Name:- Banner		
	File Name  :- banner.js
	Create Date:- 14-Mar-2006
	Intially Create By :- 0026
	Update History:
*/
function HighlightAll(theField) 
{
	var tempval=eval("document."+theField)
	tempval.focus()
	tempval.select()
	var copytoclip=1
	/*
	if (copytoclip==1)
	{		
		therange=tempval.createTextRange()
		therange.execCommand("Copy")
		window.status="Contents highlighted and copied to clipboard!"
		setTimeout("window.status=''",2400);
		copytoclip=0;
	}*/
}


