function removewp(str)
{
	temp="";
	for(i=0;i<str.length;i++)
		if(str.charAt(i)!=' ')
			temp+=str.charAt(i);
	return temp;
}
