Alteplase and Streptokinase Stability
September 20, 2020Being unlucky means something else…
October 16, 2020
<html><head>
<script type="text/javascript">
function calculate()
{
var chartPull = calc.chartPull.value;
var total = chartPull / 0.23;
calc.total.value = total;
return false;
}
</script></head>
<body>
<form name="calc" action="" method="post">
<input type="text" name="chartPull" size="10" value="0">
<input type="button" value="Calculate" onclick="calculate()" />
<input type="text" name="total" readonly="readonly" />
</form></body></html>