// Function: hl
// Decription: Highlight formfield to emulate standard Windows behaviour on user input field (IE's behaviour is not standard)
// Usage: <input type="text" onfocus="hl(this)" />
function hl(me) { // highlight me
	if(me.select) me.select();
}