/* common scripts for the Sakhalin II Project web site */

function jumpToLink(objNav, optSelected){
  var destSelected=objNav.options[optSelected]
  if (destSelected.value != "") {
    if (document.getElementById && destSelected.getAttribute("target") == "newwin")
      window.open(destSelected.value)
    else
      window.location=destSelected.value
  }
}

function showContactInfo(position) {
  if (!position)
    position = 'hq'
    
	window.open("/common/cmn_contact.html#" + position, "SEIC_Contact", "height=500,left=50,scrollbars,top=50,width=650");
	return;
}
