/*
Select All script- By Website Abstraction(http://www.wsabstract.com) 
Over 200+ free JavaScripts here!
*/

function selectAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
}
