﻿// JScript File
function setFocus()
{
    document.getElementById("txtItemId").focus();
}
function showPopup(sUrl, name)
{
    //alert(sUrl);
    window.open(sUrl,name,'toolbar=0,location=0,width=799,directories=0,status=0,menubar=0,resizable=1,scrollbars=1');
}
function openWindow(sUrl)
{
    window.open(sUrl, "_new");
}
