﻿/*  
Name: MSI.js
Java URL: http://www.myriadsystems.com/Corp/Default.aspx
Description: Website CSS File.
Author: John D Huff

*/

/* Generic
---------------------------------------------------------------------------------*/
function QuickLinkRedirect(dropdown)
{
    destination = dropdown.options[dropdown.selectedIndex].value;
    
    if (null != destination)
    {
        window.location = destination;
    }
}

function ShowPopupWindow(url)
{
    var radWindowManager = GetRadWindowManager();
	var radWindow = radWindowManager.Open(url, 'RadWindow');
	radWindow.Show();
	radWindow.Center();
}

function SearchRedirect()
{
    term = document.getElementById('inSearchTerm');
    
    url = 'Search.aspx' + '?SearchTerm=' + term.value + '&SearchType=all';
    
    window.location = url;
}

function keyPress(e)
{ 
    if (!e) var e = window.event; 
    
    var code;
    
    if (e.keyCode)
    { 
        code = e.keyCode; 
    }
    else if (e.which)
    { 
        code = e.which; 
    }
     
    if (code == 13)
    {
        SearchRedirect();
    }
}