function show(idtag) { var gui = navigator.userAgent; var Browser = 'NS'; var Tag; if(gui.search("MSIE 6.0")!= -1){Browser = 'IE';} else if(gui.search("Opera 6.05")!= -1){Browser = 'NS';} else if(gui.search("Netscape/7.1")!= -1){Browser = 'NS';} else if(gui.search("Mozilla/5.0")!= -1){Browser = 'NS';} if (Browser == 'IE') { Tag = 'inline'; }else{ Tag = 'table-row'; } if (idtag.style.display == Tag) { idtag.style.display= "none"; }else{ idtag.style.display=Tag; } } function pic($idtag) { var $current; var checkmax = $idtag.src; var max = checkmax.search(/plus.+/); var $current = 0; if(max != -1) $current = 1; if ($current == 0) $idtag.src='img/info_plus.jpg'; if ($current == 1) $idtag.src='img/info_minus.jpg'; } function pickey($idtag) { var $current; var checkmax = $idtag.src; var max = checkmax.search(/open.+/); var $current = 0; if(max != -1) $current = 1; if ($current == 0) $idtag.src='img/open.gif'; if ($current == 1) $idtag.src='img/close.gif'; } function PopUp(popa, popb, w, h, scroll) { var winl = (screen.width - w) / 2; var wint = (screen.height - h) / 2; winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable' win = open(popa, popb, winprops); //document.write (""); if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); } }