//<!--
// set items visibility using 
// specific browser technology
function SetObjVisibility (obj, visi) {
   if (navigator.appName == "Microsoft Internet Explorer")
        document.all(obj).style.visibility=visi;
   else
	{
//	alert("document.layers of " + obj + " visi = " + visi);
        document.layers[obj].visibility=visi;
	}
}
// switch highlighting on
function switch_on(theitem) {
   SetObjVisibility(theitem+"b", "hidden");
   SetObjVisibility(theitem+"c","inherit");
}
// switch highlighting off
function switch_off(theitem) {
   SetObjVisibility(theitem+"c", "hidden");
   SetObjVisibility(theitem+"b","inherit");
}
//-->

<!--

// Copyright (c) 2000 internet.com Corp. 
// http://www.webreference.com/js/
// License is granted if and only if this entire
// copyright notice is included. By Tomer Shiran.

function launch(newURL, newName, newFeatures, orgName) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null)
    remote.opener = window;
  remote.opener.name = orgName;
  return remote;
}

function cartWindow() {
  myRemote = launch("viewcart.cgi?mini=1",
                    "minicontent",
//                    "height=300,width=450,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,titlebar=1,toolbar=0,z-lock=0",
                    "height=300,width=450,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=0,location=0,menubar=0,resizable=1,status=0,titlebar=1,toolbar=0,z-lock=0",
                    "fcontent");
	myRemote.focus();
 } // cart window

function updateMini(oldurl) {
// win = window.open("", "myCart");
// if (win.location.href != "") {
// win.location.href = win.location.href;
// }
 return;
  cartWindow();
 if (document.layers) { 
  back();
 } else {
	window.navigate(oldurl);
 }
}
// -->}

function helpWindow(ID, PRODID) {
  myRemote = launch("opthelp.cgi?id="+ID+"&prodid="+PRODID,
                    "helpcontent",
                    "height=200,width=450,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=0,location=0,menubar=0,resizable=yes,scrollbars=yes,status=0,titlebar=0,toolbar=0,z-lock=0",
                    "fcontent");
 }
function ImageWindow(url) {
  myRemWindow = launch(url,
 "imagecontent",   
 "height=325,width=325,dependent=0,hotkeys=0,location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0,z-lock=0",
 "fcontent");        
  myRemWindow.focus();

 }

function changeCrap(name) {
//	alert("changeCrap called ");
//	alert("changeCrap called for " + name);
 }
function PayOpen(url) {
	var myWindow;        
	if (document.layers) {
	    	myWindow=window.open(url,'windowRef','width=200,height=100,status=no,resizable=yes');
		myWindow.focus();  
	        if (!myWindow.opener) myWindow.opener = self;
	} else {
		myWindow=window.showModalDialog(url,window,'dialogWidth:200px;dialogHeight:160px;status:no');
	}
}

function NormalOpen(url) {
	var myWindow;        
	myWindow=window.open(url,'windowRef','width=500,height=450,status=no,resizable=yes,scrollbars=yes');
	myWindow.focus();  
	if (!myWindow.opener) myWindow.opener = self;
}

