﻿function openWindow(url, wdth, hght) {var features = "location=no,status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=no"; features += ",height=" + hght; features += ",width=" + wdth;window.open(url, null, features);}
function externalLinks() { if (!document.getElementsByTagName) {return;} var anchors = document.getElementsByTagName("a"); for (var i = 0; i < anchors.length; i++) { var anchor = anchors[i]; if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") { anchor.target = "_blank"; } } }
function pageLoad() { externalLinks(); }
function FormHi(action) { theForm.__VIEWSTATE.value = ''; theForm.__EVENTTARGET.value = ''; theForm.__EVENTARGUMENT.value = ''; theForm.encoding = 'application/x-www-form-urlencoded'; theForm.action = action; theForm.submit(); }