function stripHTML(id) 
{
	var re = /(<([^>]+)>)/gi;
	document.getElementById(id).value=document.getElementById(id).value.replace(re, "")
}

function stripHTMLALL() {
var re = /(<([^>]+)>)/gi;
	oTextBoxes = new Array(); // to store the textbox objects
	oInputs = document.getElementsByTagName('input') // store collection of all <input> elements
	for ( i = 0; i < oInputs.length; i++ ) 
	{ // loop through and find <input type="text"/>
	    if ( oInputs[i].type == 'text' ) 
	    {
		oInputs[i].value = oInputs[i].value.replace(re, "")
	    }
	 }
}