Koha/koha-tmpl/intranet-tmpl/default/pl/value_builder/unimarc_field_225a.tmpl
2003-01-10 23:15:15 +00:00

23 lines
476 B
Cheetah

<html>
<head>
<title>Wpis Pola nr 100 w formacie UNIMARC</title>
</head>
<body>
<form name="f_pop" onSubmit="javascript:report()">
<table>
<tr>
<td>Wybierz zbiór</td>
<td><TMPL_VAR name="collection"></td>
</tr>
<tr><td colspan=2><input type="submit" value="OK"></td></tr>
</table>
</form>
<script>
function report() {
opener.document.f.field_value[<TMPL_VAR name="index">].value= document.f_pop.f1.value;
self.close();
return false;
}
</script>
</body>
</html>