function validateleftnavForm(form) {

        product_selected=form.quick_select.options[ form.quick_select.selectedIndex ].value;

        if (product_selected=="Nicorette"){
                form.cmd.value="doSearch";
                form.search_terms.value="nicorette";
                form.submit();
        }

        else {
                form.cmd.value="doSelect";
                form.submit();
        }
}


var mw = '';

function messageWindow(heading, messages){
	mw = window.open('','', 'height=350,width=400,scrollbars=yes');
	if (!mw.opener){
		mw.opener = self;
	}
	
	mw.document.open();
	mw.document.write('<html><head><title>'+heading+'</title><link rel="stylesheet" href="/res/new_pharm.css" type="text/css"></head>');
	mw.document.write('<body><h1>'+heading+'</h1>')
	mw.document.write('<ul type="square">');
	for(i=0;i<messages.length;i++){
		mw.document.write('<li>'+messages[i]+'<br><br></li>');
	}
	mw.document.write('</ul>');
	mw.document.write('<div align=center><a href="javascript:window.close();">Close Window</a></div>');
	mw.document.write('</body></html>');
	mw.document.close();
	
}

function trim(str){
	return str.replace(/(^\s*)|(\s*$)/g, "");
}