// lib.js

	function getProduct() {
		option=document.forms[0].product.options[document.forms[0].product.selectedIndex].value;
		//alert(option);
		window.open(option,"_top","");
	}
	
	function getClinicalSolution() {
		option=document.forms[0].clinicalSolution.options[document.forms[0].clinicalSolution.selectedIndex].value;
		//alert(option);
		window.open(option,"_top","");
	}
	
	function launchwin(winurl, winname, winfeatures){
		newwin = window.open(winurl, winname, winfeatures);
	 	setTimeout('newwin.focus();',250);
	}

	function showDiv(divId) {
		divId = divId.replace("Link", "");
		el = document.getElementById(divId);
		if (el.style.display == "none")
			el.style.display = "block";
		else
			el.style.display = "none";
		return false;
	}

