﻿function r(p) { var isIE = false; if ((document.all) && (document.getElementById)) { isIE = true; } var e = document.getElementById('supportlink'); if (e != null) { e.setAttribute("href", p); if (isIE) { e.click(); } else { document.location = p; } } else { document.location = p; } }
