﻿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;void window.open(url,null,features);}
function pageLoad(){externalLinks();}
function externalLinks() {try { 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"; anchor.onmouseover = NSHandler; } } } catch (e) { } }
function NSHandler(e) { if (!e) var e = window.event; window.status = ''; return true; }
function FormHi(action) { theForm.__VIEWSTATE.value = ''; theForm.__EVENTTARGET.value = ''; theForm.__EVENTARGUMENT.value = ''; theForm.encoding = 'application/x-www-form-urlencoded'; theForm.action = action; theForm.submit(); }
function FormHiNewWindow(action) { theForm.__VIEWSTATE.value = ''; theForm.__EVENTTARGET.value = ''; theForm.__EVENTARGUMENT.value = ''; theForm.encoding = 'application/x-www-form-urlencoded'; theForm.action = action;theForm.target = '_blank'; theForm.submit(); }
function FormHiGet(action) { theForm.__VIEWSTATE.value = ''; theForm.__EVENTTARGET.value = ''; theForm.__EVENTARGUMENT.value = ''; theForm.encoding = 'application/x-www-form-urlencoded'; theForm.action = action; theForm.method = 'get'; theForm.submit(); }
function SubmitPhoneDetective(action, p, r, tid) { var qry = action + '?p=' + p + '&amp;r=' + r + '&amp;tid=' + tid + '&amp;submit';window.location.href = qry; }