function s(that, src)
{
	that.oldsrc = that.src;
	that.src = src;
}

function r(that)
{
	that.src = that.oldsrc;
}
