

// Snow Routes App Code for public pages

//	Set document domain for apps access
	var testd = location.href;
// 	If .org forward to .com
	if (testd.indexOf(".org") > 0){
		testd = testd.replace(/.org/i, ".com");
		location.href = testd;
	}
