border: thin solid #FF0000
<script type="text/javascript">
function changeBorderWidth()
document.getElementById("p1").style.borderWidth="thick thin";
<input type="button" onclick="changeBorderWidth()" value="Change border widths" />
<p id="p1">This is a paragraph</p>