***** type="text/java*****">
String.prototype.trim = function() { return this.replace(/^(\s|\n|\t)+|(\s|\n|\t)+$/g, ""); };
function setCookie (name, value)
{
var expires = new Date((new Date()).getTime() + 300 * 24 * 60 * 60 * 1000);
var path = "/";
var domain = "ezboard.com";
var secure = false;
var cookie = name + "=" + escape(value);
cookie += ((expires) ? "; expires=" + expires.toGMTString() : "");
cookie += ((path) ? "; path=" + path : "");
cookie += ((domain) ? "; domain=" + domain : "");
cookie += ((secure) ? "; secure" : "");
document.cookie = cookie;
}
function getCookie(name)
{
var cookie = document.cookie;
var val = name + "=";
var start = cookie.indexOf("; " + val);
if (start == -1)
{
start = cookie.indexOf(val);
if (start != 0) return null;
}
else
{
start += 2;
}
var end = document.cookie.indexOf(";", start);
if (end == -1)
end = cookie.length;
return unescape(cookie.substring(start + val.length, end));
}
function getUsername()
{
var user = "";
var allBold = document.getElementsByTagName("b");
var unlinked = new RegExp("Logged in as ([^<]+)");
var linked = new RegExp("Logged in as [\n\s\t\r\w]*[\<]+a href=(\"|)(BBSUser.showIdentityLink[\?]redirectURL[\=]http\:\/\/(pub|b|p)[0-9]+.ezboard.com\/[a-z0-9]{2,})(\"|)([\>]*)([^<]+)([/]*)","ig");
for (b = 0; b < allBold.length; b++)
{
if (allBold.item(b).innerHTML.match(unlinked))
{
user = allBold.item(b).innerHTML.match(unlinked)[1];
if (getCookie("ezuser") != user.trim())
{
setCookie("ezuser", user.trim());
}
}
if (allBold.item(b).innerHTML.match(linked))
{
user = allBold.item(b).innerHTML.match("([>])([^<]+)([/]*)")[2];
if (getCookie("ezuser") != user.trim())
{
setCookie("ezuser", user.trim());
}
}
}
if (getCookie("ezuser") != null)
{
user = getCookie("ezuser");
}
else
{
user = "Guest";
}
return user;
}
*****>
<***** type="text/java*****">
/* FUNCTION TO GET ELEMENTS WITH TAG/ATTRIBUTE/VALUE */
function getElementsByAttribute (tag, attr, value, stopat) {
var re;
var foundels;
var iFound;
var sAttrValue;
checkels = document.getElementsByTagName(tag);
foundels = new Array();
for (el = 0; el < checkels.length; el++) {
sAttrValue = checkels[el].getAttribute(attr, 2);
re = new RegExp(value, "ig");
if (re.test(sAttrValue) != 0) {
iFound = foundels.push(checkels[el]);
if (stopat > 0 && iFound >= (stopat)) {
el = checkels.length;
}
}
}
return foundels;
}
/* END FUNCTION TO GET ELEMENTS WITH TAG/ATTRIBUTE/VALUE */
*****>
<***** LANGUAGE="Java*****1.2">
*****>
<***** type="text/java*****">
/* BEGIN EZURL */
ezURL = document.location.href.match("http://((?:pub|b|p)([0-9]+)|beta|vanchau|inbox).ezboard.com/(b|f)([a-zA-Z0-9]+(?=frm[0-9]+)|[a-zA-Z0-9]+(?!frm[0-9]+))(frm[0-9]+|)(?:(?:[.]{1})([a-zA-Z0-9=+&.]+)|)(?:(?:[x3F]{1})([a-zA-Z0-9=+&.]+)|)(?:.*)");
try {
if (ezURL.length > 0) {
ezPub = ezURL[2].length > 0 ? ezURL[2] : ezURL[1];
ezFullPub = ezURL[1];
ezIsBoard = ezURL[3] == "b" ? true : false;
ezBoardID = ezURL[4];
ezForum = ezURL[5];
ezPage = ezURL[6];
ezQuery = ezURL[7];
}
} catch (e) { }
ezURL = null;
/* END EZURL */
*****>
<***** language="Java*****">
// Source: CodeFoot.com
function blockError(){return true;}
window.onerror = blockError;
*****>
|
|
|
|
<*****>function highlight(which,color){
if (document.all||document.getElementById)
which.style.backgroundColor=color
}
*****>
*
*
*
*
<***** LANGUAGE="java*****" TYPE="text/java*****">
/*
***** by Mike McGrath- http://website.lineone.net/~mike_mcgrath
Featured on Java***** Kit (http://java*****kit.com)
For this and over 400+ free *****s, visit http://java*****kit.com
*/
var nav = (document.layers);
var tmr = null;
var spd = 50;
var x = 0;
var x_offset = 5;
var y = 0;
var y_offset = 15;
if(nav) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = get_mouse;
function get_mouse(e)
{
x = (nav) ? e.pageX : event.clientX+document.body.scrollLeft;
y = (nav) ? e.pageY : event.clientY+document.body.scrollTop;
x += x_offset;
y += y_offset;
beam(1);
}
function beam(n)
{
if(n<5)
{
if(nav)
{
eval("document.div"+n+".top="+y);
eval("document.div"+n+".left="+x);
eval("document.div"+n+".visibility='visible'");
}
else
{
eval("div"+n+".style.top="+y);
eval("div"+n+".style.left="+x);
eval("div"+n+".style.visibility='visible'");
}
n++;
tmr=setTimeout("beam("+n+")",spd);
}
else
{
clearTimeout(tmr);
fade(4);
}
}
function fade(n)
{
if(n>0)
{
if(nav)eval("document.div"+n+".visibility='hidden'");
else eval("div"+n+".style.visibility='hidden'");
n--;
tmr=setTimeout("fade("+n+")",spd);
}
else clearTimeout(tmr);
}
// -->
*****>
|
| HRW is now closed. Thank you to all our loyal members. This board may eventually move to Yuku, but I`m not sure yet.
|
|
|
1
visitor
in the last 15 minutes:
0
Members
-
1
Guest
-
0
Anonymous
|
|
|
|
| |
Forum |
# Posts |
Last Comment |
Moderators |
|
Administration Areas
|
|
|
Archives
This forum holds the discussion archives of the board.
|
1656 | 7/21/06 9:19 am |
Soots1
ViciBlue
|
|
|
|
<***** type="text/java*****">
var allSpans = document.getElementsByTagName("span");
var user = getUsername();
for (s = 0; s < allSpans.length; s++) {
if (allSpans.item(s).getAttribute("name") == "userName") {
allSpans.item(s).innerHTML = user;
}
}
*****>
<***** type="text/java*****">
/* auto submit forum jump, ezring and bulk command forms */
var sel = document.getElementsByTagName("select")
for (k = 0; k < sel.length; k++)
{
var name = sel.item(k).getAttribute("name").toLowerCase();
if (name == "webid" || name == "forumname" || name == "bulktopicaction" || name == "rating")
{
sel.item(k).onchange = function () {this.form.submit()};
}
}
*****>
<***** type="text/java*****">
/* QUICK REPLY by phalen180 */
/*
copyright 2005 phalen180
Please email serverfund at geke.net for info on how to donate to keep the
G E K E . N E T ezboard ***** archive going
*/
if ( document.location.href.indexOf(".showMessage") != -1 ||
document.location.href.indexOf(".showPrevMessage") != -1 ||
document.location.href.indexOf(".showNextMessage") != -1 ||
document.location.href.indexOf(".deleteSingle") != -1) {
/* Comment the lines below out or change the value to false
to assume that we will NOT include personal photo
or signature,
or use emoticons
or to show a link to the emoticon list
or to hide the subject box */
// For the following options
// use 0 for never,
// 1 for always,
// 2 to show checkbox (unchecked),
// 3 to show checkbox (checked)
includePersonalPhoto = 1;
includeSignature = 1;
useEmoticons = 3;
convertLinks = 3;
stayInTopic = 2;
showPreview = 2;
linkEmoticonList = false;
/*
use "text" for plain text,
"html" for HTML
and "choose" to show a dropdown */
// postType = "html";
// postType = "text";
// postType = "choose";
postType = "ezcodes";
showSubjectBox = true;
subjectSize = 60;
messageCols = 60;
messageRows = 4;
/* UNCOMMENT THIS ONE TO USE THE ORIGINAL style */
// addReplyButton = document.getElementsByName("addreplybutton").item(1);
/* UNCOMMENT THIS ONE TO USE A TEXT ADD/REPLY BUTTON */
// foundels = getElementsByAttribute("a", "href", ".showAddReplyScreenFromWeb?", 0);
// addReplyButton = foundels[foundels.length - 1].childNodes[0];
/* UNCOMMENT THIS ONE TO USE AN IMAGE ADD/REPLY BUTTON */
addReplyButton = getElementsByAttribute("img", "alt", "Add Reply", 2)[1];
QRCell = addReplyButton.parentNode;
while ( QRCell.nodeName != "TR" ) {
QRCell = QRCell.parentNode;
}
QRCell = QRCell.getElementsByTagName("td").item(0);
QRForm = document.createElement("form");
QRForm.method = "post";
QRForm.action = addReplyButton.parentNode.href.replace(".showAddReplyScreenFromWeb", ".addReplyFromWeb");
QRForm.name = "PostMessage";
QRSubject = document.createElement("input");
QRSubject.value = document.title.replace(" - www.ezboard.com", "");
QRSubject.id = "quickreplysubject";
QRSubject.name = "subject";
if ( showSubjectBox ) {
QRSubject.type = "text";
QRSubject.className = "inputbox";
QRSubject.maxLength = 60;
QRSubject.size = subjectSize;
QRSubject.tabIndex = 3;
QRSubject.style.marginRight = "3px";
} else {
QRSubject.type = "hidden";
}
QRBody = document.createElement("textarea");
QRBody.rows = messageRows;
QRBody.cols = messageCols;
QRBody.id = "quickreplybody";
QRBody.className = "inputbox";
QRBody.value = "";
QRBody.name = "body";
QRBody.tabIndex = 4;
QRSubmit = document.createElement("input");
QRSubmit.type = "submit";
QRSubmit.className = "inputbutton";
QRSubmit.id = "quickreplysubmit";
QRSubmit.value = "Quick Reply";
QRSubmit.tabIndex = 5;
QRCell.align = "right";
QRCell.appendChild(QRForm);
/* Uncomment the commented lines to add labels for the two boxes */
// QRForm.appendChild(document.createTextNode("Subject: "));
QRForm.appendChild(QRSubject);
QRForm.appendChild(QRSubmit);
// QRForm.appendChild(document.createElement("br"));
// QRForm.appendChild(document.createTextNode("Message: "));
QRForm.appendChild(document.createElement("br"));
QRForm.appendChild(QRBody);
QRForm.appendChild(document.createElement("br"));
if (postType != "choose") {
QRpt = document.createElement("input");
QRpt.type = "hidden";
QRpt.name = "postType";
QRpt.value = postType;
QRForm.appendChild(QRpt);
}
else {
QRpt = document.createElement("select");
QRpt.name = "postType";
QRpt.appendChild(QRSelection("text", "Plain Text"));
QRpt.appendChild(QRSelection("ezcodes", "EZ Codes"));
QRpt.appendChild(QRSelection("html", "HTML"));
QRForm.appendChild(QRpt);
}
if ( includeSignature > 0) {
QRForm.appendChild(QROption("includeSignature","Include custom signature.", includeSignature));
}
if ( includePersonalPhoto > 0) {
QRForm.appendChild(QROption("includePersonalPhoto","Include personal photo.", includePersonalPhoto));
}
if ( useEmoticons > 0 ) {
QRForm.appendChild(QROption("emoticons","Use Emoticons.",useEmoticons));
}
if ( convertLinks > 0 ) {
QRForm.appendChild(QROption("convertLinks","Convert URL links.",convertLinks));
}
if ( stayInTopic > 0) {
QRForm.appendChild(QROption("stayInTopic","Stay in topic", stayInTopic));
}
if ( showPreview > 0) {
QRForm.appendChild(QROption('preview','Preview', showPreview));
}
if ( linkEmoticonList && ezFullPub != "") {
eListLink = document.createElement("a");
eListLink.href = "http://" + ezFullPub + ".ezboard.com/b" + ezBoardID + ".showEmoticonsHelp";
eListLink.target = "_blank";
eListLink.innerHTML = "complete emoticon list";
QRForm.appendChild(document.createElement("br"));
QRForm.appendChild(eListLink);
}
}
function QROption(sName, sLabel, iShowState) {
if ( iShowState > 0 ) {
QROpt = document.createElement("span");
QROpt.id = "span" + sName;
QRCheckBox = document.createElement("input");
QRCheckBox.name = sName;
QRCheckBox.id = sName;
QRCheckBox.value = "on";
if ( iShowState > 1 ) {
QRCheckBox.type = "checkbox";
// checkbox label
QRCheckBoxLabel = document.createElement("label");
QRCheckBoxLabel.htmlFor = sName;
QRCheckBoxLabel.innerHTML = sLabel;
if ( iShowState > 2 ) {
QRCheckBox.defaultChecked = true;
}
QROpt.appendChild(QRCheckBox);
QROpt.appendChild(QRCheckBoxLabel);
} else {
QRCheckBox.type = "hidden";
QROpt.appendChild(QRCheckBox);
}
return QROpt;
}
}
function QRSelection(sOption, sDisplay) {
QRSel = document.createElement("option");
QRSel.innerHTML = sDisplay;
QRSel.value = sOption;
return QRSel;
}
/* END QUICK REPLY */
*****>
<***** LANGUAGE="java*****">
/*
***** by Mike Mcgrath- http://website.lineone.net/~mike_mcgrath
Featured on Java***** Kit (http://java*****kit.com)
For this and over 400+ free *****s, visit http://java*****kit.com
*/
var alpha=new Array();
var alpha_index=0;
var bravo=new Array();
var bravo_index=0;
var running=0;
var failnum=0;
var advising=0;
function pick()
{
var choice="";
var blank=0;
for (i=0; i
Thanks for visiting HRW ~ Come again soon!
<***** type="text/java*****">
*****>
<***** type="text/java*****" src="http://www7.addfreestats.com/cgi-bin/afstrack.cgi?usr=00703859">
*****>
<***** type="text/java*****">
/* CHANGE WHO'S ONLINE LABELS */
if ( !(ezPage && ezQuery ) || ezIsBoard) {
replaceWhat = Array("visitor", "in the last 15 minutes", "Member", "Guest", "Anonymous");
replaceWith = Array("HRW`er", "in the next 15 minutes", "Gardener", "Smiling Flower", "Leafy Vegetable");
allTables = document.getElementsByTagName("table");
for (at = 0; at < allTables.length; at++ ) {
if (allTables.item(at).className == "whosonline") {
wotd = allTables.item(at).getElementsByTagName("td").item(0);
for ( rw = 0; rw < replaceWhat.length; rw++ ) {
wotd.innerHTML = wotd.innerHTML.replace(replaceWhat[rw], replaceWith[rw]);
}
}
}
}
/* END CHANGE WHO'S ONLINE LABELS */
*****>
Powered By ezboard® Ver. 7.32
Copyright ©1999-2007 ezboard, Inc.