// 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);
	}

