﻿/*

Redirects iframe to correct directory if URL hash is specified. Second half of the fix to make Webgains deeplinks work as desired. (See "frameFix.js" for the first half of the equation.)

*/

(function() {

	if (self.location.hash && self.location.hash.indexOf('/') != -1) {
		var iframe = document.getElementById('recycling');
		iframe.src = 'http://iframe.webuyanyphone.com' + self.location.hash.substr(1);
	}

})();