comparison xul/content/astrosearch.js @ 203:bf945fcf9105

restarting with version control of xul sidebar/toolbar
author luginbue
date Fri, 27 Feb 2004 11:24:53 +0100
parents
children
comparison
equal deleted inserted replaced
202:7501034e54e1 203:bf945fcf9105
1 var key='';
2
3 function start_search(){
4 var target_iframe=document.getElementById('astro_resultframe');
5 var boolIsManuscript=document.getElementById("manuscript").selected==true;
6 var strDocType="image";
7 if (boolIsManuscript){
8 strDocType="manuscript";
9 }
10 var strLibrary=document.getElementById("bibliothek").label;
11 var strCentury=document.getElementById("century").label;
12 var strAuthor=document.getElementById('autorenkontext').label;
13 var strImageType=document.getElementById('bildtyp').label;
14
15 //target_iframe.setAttribute('src','astro_search.jsp?key='+key+'&cat='+search_category+'&str='+search_string);
16 //target_iframe.setAttribute('src','result.htm');
17 target_iframe.setAttribute('src','http://hera.unibe.ch:8080/alcatraz/xul/astro_search.jsp?doctype='+strDocType+'&lib='+strLibrary+'&aut='+strAuthor+'&cent='+strCentury+'&type='+strImageType);
18 }
19
20
21 function changeRadioGroup(sel){
22 key=sel.id;
23 if (key=="image"){
24 document.getElementById("bildtyp").disabled=false;
25 document.getElementById("lblbildtyp").disabled=false;
26 document.getElementById("bildtyp").label="all";
27 }else{
28 document.getElementById("bildtyp").disabled=true;
29 document.getElementById("lblbildtyp").disabled=true;
30 document.getElementById("bildtyp").label="";
31 }
32 }