// Copyright Star Global

function newWindow(a) {
      a.target = "_blank";
}


function sgSwitch (name, direction) {
		// Image directory below
		directory = '/nav/';
		// Get the image file name extension
		img = document.getElementById(name);
    fileExtension = img.src.substr(img.src.lastIndexOf("."), img.src.length);
    // Show or hide the appropriate image
    switch(direction)
    {
      case 'show':
    	document.getElementById(name).src = directory + name + 1 + fileExtension;
    	break;

      case 'hide':
    	document.getElementById(name).src = directory + name + 0 + fileExtension;
    	break;
    }
    return true;
}


function popup (a, name, w, h) {
	url = a.href;
  var details= "toolbar=no,location=no,directories=no,menubar=no,scrollbars=yes,resizeable=yes,status=no,width=" + w + ",height= " + h + " ";
  window.open(url,name,details);
}


function popupView (url, name, w, h) {
  var details= "toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,resizable=yes,status=no,width=" + w + ",height= " + h + " ";
  window.open(url,name,details);
}


function jumpURL(object) {
   if (object.options[object.selectedIndex].value != "") {
      newWindow = window.open('','quickLink');
      newWindow.location.href = object.options[object.selectedIndex].value;
   }
}