﻿// JScript File
//******************************************************************************************//
// Function : SetFocus()
// Purpose :  To set the focus on user Element 
// Written BY: Sandeep jain
// Date      : 20 Aug  2008
//*****************************************************************************************//

function Setfocus(txtName)
{   
       document.getElementById(txtName).focus();
} 

