function removespace(name)
{
	var temp="";
	var split_text=name.split(" ");
	for(i=0; i<split_text.length; i++)
	{
		temp+=split_text[i];
	}
	return temp;
}