function openPopUp(sourcefile, w, h) { 
	newWin = window.open(sourcefile,"menu1","status=yes,menubar=yes,toolbar=yes,location=yes,scrollbars=yes,resizable=yes,width="+w+",height="+h+",screenX=100,screenY=100,left=100,top=100");
	newWin.focus();
}


//portfolio form field drop menu functions
function changeLocation(elementNum) {
  var index = document.forms[0].elements[elementNum].selectedIndex;
  var elementNum = elementNum;
  goTo(index,elementNum);
}

function goTo(index,elementNum) {
  var jumpTo = document.forms[0].elements[elementNum].options[index].value;
  if(jumpTo == "separator") return;
  parent.location.href = jumpTo;
}