function show_hide_class(klass) { d=document.getElementsByTagName('div'); for (i=0; i"; doc_code+=""; doc_code+=""; h_padding_factor=.15; w_padding_factor=.05; width=img_array[img].width; width+=width*w_padding_factor; height=img_array[img].height; height+=height*h_padding_factor; //alert(img_array[img_num].src); //alert("w=" + width + " h=" + (height + 60)); window_str="width=" + width +",height=" + height + ",left=50,screenX=50,top=10,screenY=10,resizable=yes,directories=no,status=no,scrollbars=no,location=no,menubar=no,toolbar=no"; w=window.open("","img_viewer",window_str,"false"); w.document.clear(); w.resizeTo(width,height); w.document.write(doc_code); w.document.close(); w.focus(); } function gotopage(f,sb_name) { //make action of form: "javascript: gotopage(document.forms['form_name'],'sb_name');" //make onChange of sb: "onChange="document.forms['form_name'].submit()" sel_index=f.elements[sb_name].options.selectedIndex; location_str=f.elements[sb_name].options[sel_index].value; window.location=location_str; }