// Rettet  : 21/07-2010
// Oprettet: 11/02-2006
//

function submitAction(act) {
  document.Form1.fmAction.value=act;
  document.Form1.submit();
}
function submitActionArg(act, arg) {
	document.Form1.Bog.value=arg;
	submitAction(act);
}
function popupSelect(objValue,strField) {
  document.Form1[strField].value=objValue.innerText;
  objValue.parentNode.parentNode.style.visibility='hidden';
  //document.Form1[strField].focus();
  document.Form1[strField].select();
}

function popupFileWindow(strField,strType,strArg) {
  var winPicture = window.open("/selectlist.asp?Field=" + strField + "&PopupType=" + strType + "&Argument=" + strArg,"winSelect","scrollbars=no,resizable=no,location=no,toolbar=no,directories=no,status=no,fullscreen=no,width=300,height=500");
  var x = window.screenLeft+200;
  var y = window.screenTop+200;
  winPicture.moveTo(x,y);
  winPicture.focus();
}

function popupWindowPosition() {
}
function popupWindowSelect(strField,strValue) {
  if (!window.opener.closed) {
    var fld = eval('window.opener.document.Form1.' + strField);
    fld.value = strValue;
    fld.select();
  }
  window.close();
}
function imgShow(strFileName) {
  var winPicture = window.open("/billede.asp?Image=" + strFileName,"winPicture","scrollbars=no,resizable=yes,location=no,toolbar=no,directories=no,status=no,fullscreen=no,width=100,height=100");
}