function OpenBrWindow(theURL,winName,features) { //v2.0
			mediumWin = window.open(theURL,winName,features);
     		mediumWin.focus();
        }

function DisplayPic(url, name,features) {  // added 8/3/2003 for use in internal indexes
		mediumWin = window.open(url,name,features);
     		mediumWin.focus();
        }

function photo_open(link, width, height) { // added 3/3/04 view product pictures. 5/16/04 added focus change
		var photoWindow = window.open(link,"photo",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height);
     		photoWindow.focus();
  }


// Michael P. Scholtis (mpscho@planetx.bloomu.edu)
// All rights reserved. July 21, 1996
// You may use this JavaScript example as you see fit, as long as the
// information within this comment above is included in your script.

function surfto(jumpbox) {
        var myindex = jumpbox.selectedIndex;
        if (jumpbox.options[myindex].value != "") {
                location = jumpbox.options[myindex].value;
        }
}

function mail(user,domain,subject) {
 var f1 = "lto:";
 var f2 = "@";
 return(self.location.href= "mai" + f1 + user + f2 + domain + "?subject=" + subject);
}


function showtip(current, whichDiv)
{
	if(document.getElementById)
	{
		elm=document.getElementById( whichDiv );
		elml=current;  
		elm.style.height=elml.style.height;
		// next two line use a drop declaration for left and top
		// elm.style.top=parseInt(elml.offsetTop+elml.offsetHeight);
		//       elm.style.left=parseInt(elml.offsetLeft+elml.offsetWidth+10);
		elm.style.visibility = "visible";
		// next 2 line cause javascript console error message DL
		// elm.style.pixelTop = event.clientY + 10;
		// elm.style.pixelLeft = event.clientX + 10;
	}
}

function hidetip(whichDiv)
{
	if (document.layers)
	{
		elm2 = eval("document." + whichDiv );
		elm2.visibility="hidden";
	}
	else
	{
		if(document.getElementById)
		{
			elm.style.visibility="hidden";
		}
	}
}
