startList = function() {
navRoot = document.getElementById("s");
navRoot.onfocus=function() {
  if(this.value == "Search Coming Soon") this.value = "";
  }
navRoot.onblur=function() {
  if(this.value == "") this.value = "Search Coming Soon";
  }
}
window.onload = function() {
  startList();
}
function popupWin(myurl)
    {
    win = window.open(myurl, 
		    'windowd', 
		    'toolbar=0,location=0,menubar=0,scrollbars=1,resizable=1,height=570,width=500');
    }

