// Fix URL for Flash Remoting
// (adds 'http://www' to the url if the user input is without it)

var u = location.href;
u = u.slice(7);
if (u.slice(0, 3) != 'www'){
	location.href = 'http://www.' + u;
}
