// JavaScript Document

function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}

function submitForm(src)	{
	document.getElementById(src).submit();
}
