<!--VERSION[] = "380@(#) features.js 380.1@(#) 03/03/08 14:14:33"; -->
2
3function openNewWindow( newURL )
4{
5 var w = (window.open (newURL, 'relsearch', 'width=550,height=650,status=yes,scrollbars=yes,resizable'));
6 w.focus ();
7
8 return false;
9}
10
11
12function setToolVisibility(obj, sVisible, obj2, sVisible2)
13{
14 if ( !document.images )
15 return;
16 if ( typeof obj == "string" )
17 obj = document.getElementById (obj);
18 obj.style.display = sVisible;
19 if ( typeof obj2 == "string" )
20 obj2 = document.getElementById (obj2);
21 obj2.style.display = sVisible2;
22
23 return false;
24}
25
26
27isIE=document.all;
28isNN=!document.all && document.getElementById;
29isHot=false;
30revIdent = null;
31
32function getReview(id){
33 revIdent=document.getElementById(id);
34}
35
36