﻿var _BaseUrl = 'http://ukh-interwebs1/kumed/';

function GoSearch(MyCtrl) {
   var col = 'Internet';
   var charset = 'iso=8859-1';
   var newurl = 'http://search.kumed.com/query.html?col=' + col + '&charset=' + charset;
   newurl += '&qt=' + MyCtrl.value;
   window.location.href = newurl;
}

function GoPhysician(MyDname, MySpec) {
   var newurl = 'http://referral.kumed.com/weblink/physicianRedirect.jsp?';
   newurl += '&dname=' + MyDname.value;
   var selIndex = MySpec.selectedIndex;
   newurl += '&department=' + MySpec.options[selIndex].id;
   window.location.href = newurl;
}

function init() {
   // Place holder init that does NOTHING!
}
