window.location="http://www.us-electronics.com/use_07july/index.php";



function whitespaces(value)
{
	var text=value;

	while(text.indexOf(' ') == 0)
	text=text.substring(1,text.length);

	while(text.lastIndexOf(' ') == text.length-1 && text.length != 0)
	text=text.substring(0,text.length-1);

	return text;
}