
/*
Select All script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 400+ free JavaScripts here!
*/

function selectAll(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
}