function removeSpace(oElem){
	var tempstring = "";
	for(var i = 0 ; i < oElem.value.length ; i++){
		if(oElem.value.charAt(i) != " "){
			tempstring = tempstring + oElem.value.charAt(i);
		}
	}
	oElem.value = tempstring;
}