//---------------------------------------------------------------------------------------------------
//	Module Name:- Banner		
//	File Name  :- banner.js
//	Create Date:- 20-APR-2008
//	Intially Create By :-
//	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;
//	}

}

