function popup(mylink, windowname) {
      if(!window.focus) {
          return true;
      }

      var href;
      if(typeof(mylink) == 'string') {
          href = mylink;
      } else {
          href = mylink.href;
      }

      window.open(href, windowname, 'height=520,width=230,location=no,resizable=no,menubar=no,status=no,scrollbars=no,toolbar=no');
      return false;
  }


 function contactpopup(mylink, windowname) {
      if(!window.focus) {
          return true;
      }

      var href;
      if(typeof(mylink) == 'string') {
          href = mylink;
      } else {
          href = mylink.href;
      }

      window.open(href, windowname, 'height=450,width=230,location=no,resizable=no,menubar=no,status=no,scrollbars=no,toolbar=no');
      return false;
  }

function jumpPage() {
      if(!window.focus) {
          return true;
      }
    newPage=kselect.quickselect.options[kselect.quickselect.selectedIndex].value

    if(newPage != "") {

	window.open(kselect.quickselect.options[kselect.quickselect.selectedIndex].value,'URLwindow','width=300,height=350,resizable=no,menubar=no,status=no,scrollbars=yes');

    }

}

function screenpopup(mylink, windowname, width, height) {
			if(!width) {
			var	width = 780;
			}
			if(!height) {
			var	height = 600;
			}
      if(!window.focus) {
          return true;
      }

      var href;
      if(typeof(mylink) == 'string') {
          href = mylink;
      } else {
          href = mylink.href;
      }

      window.open(href, windowname, 'height=' + height + ',width=' + width + ',location=no,resizable=yes,menubar=no,status=no,scrollbars=no,toolbar=no');
      return false;
  }

function chartpopup(mylink, windowname) {
      if(!window.focus) {
          return true;
      }

      var href;
      if(typeof(mylink) == 'string') {
          href = mylink;
      } else {
          href = mylink.href;
      }

      window.open(href, windowname, 'height=426,width=600,location=no,resizable=no,menubar=no,status=no,scrollbars=no,toolbar=no');
      return false;
  }
