﻿// JScript File

function OpenNewWindow(url,windowname,height, width)
{
    var theHeight = height;
    var theWidth = width;
    var theTop=(screen.height/2)-(theHeight/2);
    var theLeft=(screen.width/2)-(theWidth/2)-20;
    
    var features='height='+theHeight+',width='+theWidth+',top='+theTop+',left='+theLeft+',scrollbars=yes,resizable=yes, menubar=yes, toolbar=true, location=yes';
    theWin=window.open(url,windowname,features);

}
function DoFocus(fld) 
{
    fld.className = 'focusSearchfld';
}
