function openNewWin(i_sURLtoOpen, i_sWindowName, i_sWindowFeatures) 
{
    var sWindowFeatures = "height=450,width=750,resizable=yes,status=yes,toolbar=yes";
    var sWindowName = "helpWin";
    
    if (("" != i_sWindowName) && ("undefined" != i_sWindowName))
    {
        sWindowName = i_sWindowName;
    }
  
    
    // For any window features that are defined more than once the last definition takes effect.
    
    if (("" != i_sWindowFeatures) && ("undefined" != i_sWindowFeatures))
    {
        sWindowFeatures = sWindowFeatures + "," + i_sWindowFeatures;
    }
    
    newWindow = window.open(i_sURLtoOpen, sWindowName, sWindowFeatures); 
    window.newWindow.focus();
}