

/**
 * Show popup postcode. Mode determines the inputs in the orginal page are filled.
 */
function showPostcode() {
	var pWin = window.open('../popup-postcode.php', 'lookupAddress', 'width=350,height=185,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=0');
	pWin.focus();
	return;
}


/**
 * Popup window.
 */
function popupWindow(page, name, width, height) {
	var pWin = window.open(page, name,
		"toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, "
		+ "width=" + width + ", height=" + height);
	pWin.focus();
	return;
}



function setSelectInputValue(select_input, value) {
  select_input.selectedIndex = -1;
  for(var i = 0; select_input.options.length; i++) {
    if(select_input.options[i].value == value) {
      select_input.selectedIndex = i;
      break;
    }
  }
}




