Bläddra i källkod

Start of code rewrite

Nathaniel van Diepen 11 år sedan
förälder
incheckning
370da95092
3 ändrade filer med 1316 tillägg och 1314 borttagningar
  1. 65 66
      omnomirc_www/Channels.php
  2. 1073 1064
      omnomirc_www/Omnom_Parser.js
  3. 178 184
      omnomirc_www/index.php

+ 65 - 66
omnomirc_www/Channels.php

@@ -1,66 +1,65 @@
-<?PHP	
-/*
-    OmnomIRC COPYRIGHT 2010,2011 Netham45
-
-    This file is part of OmnomIRC.
-
-    OmnomIRC is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    OmnomIRC is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with OmnomIRC.  If not, see <http://www.gnu.org/licenses/>.
-*/
-	include("/path/to/omnomirc_www/folder/Source/sign.php");
-	//Set the channels here.
-	//$channels[]=Array("#channel",AlwaysShow);
-	$channels=Array();
-	$channels[]=Array("#chan1",true);//Default chan, 'cause it's the first in the array.
-	$channels[]=Array("#chan2",true);
-	$exChans=Array();
-	$exChans[]=Array("#chan",false);
-?>
-<?PHP
-	
-	if (!isset($IRCBOT))
-	{
-		//Output for Javascript.
-		header('Content-type: text/javascript');
-		$chanStr = "";
-		foreach ($channels as $chan)
-			if ($chan[1])$chanStr = $chanStr . '"'.base64_url_encode($chan[0]).'",';
-		$chanStr = substr($chanStr,0,-1);
-		
-		echo "var channels=[";
-		echo $chanStr;
-		echo "];";
-		
-		$exChanStr = "";
-		foreach ($channels as $chan)
-			if (!$chan[1])$exChanStr = $exChanStr . '"'.base64_url_encode($chan[0]).'",';
-		$exChanStr = substr($exChanStr,0,-1);
-		
-		echo "var exChannels=[";
-		echo $exChanStr;
-		echo "];";
-	}
-	else
-	{
-		//Output for PHP
-		$chanStr = "";
-		foreach ($exChans as $chan)
-			$channels[] = $chan;
-		foreach ($channels as $chan)
-			$chanStr = $chanStr .$chan[0].',';
-		
-		$chanStr = substr($chanStr,0,-1);
-	}
-?>
-
-
+<?PHP	
+/*
+    OmnomIRC COPYRIGHT 2010,2011 Netham45
+
+    This file is part of OmnomIRC.
+
+    OmnomIRC is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    OmnomIRC is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with OmnomIRC.  If not, see <http://www.gnu.org/licenses/>.
+*/
+	include("Source/sign.php");
+	//Set the channels here.
+	//$channels[]=Array("#channel",AlwaysShow);
+	$channels=Array();
+	$channels[]=Array("#main",true);//Default chan, 'cause it's the first in the array.
+	$exChans=Array();
+	$exChans[]=Array("#main2",false);
+?>
+<?PHP
+	
+	if (!isset($IRCBOT))
+	{
+		//Output for Javascript.
+		header('Content-type: text/javascript');
+		$chanStr = "";
+		foreach ($channels as $chan)
+			if ($chan[1])$chanStr = $chanStr . '"'.base64_url_encode($chan[0]).'",';
+		$chanStr = substr($chanStr,0,-1);
+		
+		echo "var channels=[";
+		echo $chanStr;
+		echo "];";
+		
+		$exChanStr = "";
+		foreach ($channels as $chan)
+			if (!$chan[1])$exChanStr = $exChanStr . '"'.base64_url_encode($chan[0]).'",';
+		$exChanStr = substr($exChanStr,0,-1);
+		
+		echo "var exChannels=[";
+		echo $exChanStr;
+		echo "];";
+	}
+	else
+	{
+		//Output for PHP
+		$chanStr = "";
+		foreach ($exChans as $chan)
+			$channels[] = $chan;
+		foreach ($channels as $chan)
+			$chanStr = $chanStr .$chan[0].',';
+		
+		$chanStr = substr($chanStr,0,-1);
+	}
+?>
+
+

+ 1073 - 1064
omnomirc_www/Omnom_Parser.js

@@ -1,1064 +1,1073 @@
-
-/*
-    OmnomIRC COPYRIGHT 2010,2011 Netham45
-
-    This file is part of OmnomIRC.
-
-    OmnomIRC is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    OmnomIRC is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with OmnomIRC.  If not, see <http://www.gnu.org/licenses/>.
-*/
-
-document.domain=HOSTNAME;
-
-messageList = Array();
-UserListArr = Array();
-curLine = 0;
-//messageBox = document.getElementById("MessageBox");
-messageBox = document.createElement("table");
-messageBox.style.width="100%";
-messageBox.style.height="100%";
-messageBox.className='MessageBox';
-mBoxCont = document.getElementById("mboxCont");
-Userlist = Array();
-scrolledDown = true;
-//******************************
-// Start Request Loop functions*
-//******************************
-	function startLoop()
-	{
-		xmlhttp=getAjaxObject();
-		if (xmlhttp==null) { 
-			alert ("Your browser does not support AJAX! Please update for OmnomIRC compatibility.");
-			return;
-		}
-		xmlhttp.onreadystatechange=getIncomingLine;
-		sendRequest();
-	}
-	inRequest = false;
-	errorCount = 0;
-	function cancelRequest()
-	{
-		xmlhttp.abort();
-		inRequest = false;
-	}
-	function sendRequest()
-	{
-		if (inRequest)
-			return;
-		url = "Update.php?lineNum=" + curLine + "&channel=" + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature);
-		xmlhttp.open("GET",url,true);
-		if (isBlurred()){
-			setTimeout("xmlhttp.send(null);",2500); //Only query every 2.5 seconds maximum if not foregrounded.
-		}
-		else
-		{
-			setTimeout("xmlhttp.send(null);",75); //Wait for everything to get parsed before requesting again.
-		}
-		inRequest = true;
-	}
-	
-	function getIncomingLine()
-	{
-		if (xmlhttp.readyState==4 || xmlhttp.readyState=="complete") { 
-			inRequest = false;
-			if (xmlhttp.responseText == "Could not connect to SQL DB." || xmlhttp.status != 200) 
-			{
-				errorCount++;
-				if (errorCount == 10)
-				{
-					OmnomIRC_Error("OmnomIRC has lost connection to server. Please refresh to reconnect.");
-					return;
-				}
-				else
-				{
-					sendRequest();
-					return;
-				}
-			}
-			if (xmlhttp.status == 200) addLines(xmlhttp.responseText); //Filter out 500s from timeouts
-			errorCount = 0;
-			sendRequest();
-		}
-	}
-	
-	function getAjaxObject()
-	{
-		xmlhttp=new XMLHttpRequest(); //Decent Browsers
-		if (!xmlhttp || xmlhttp == undefined || xmlhttp == null) xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");  //IE7+
-		if (!xmlhttp || xmlhttp == undefined || xmlhttp == null) xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); //IE6-
-		return xmlhttp;
-	}
-	
-//******************************
-// End Request Loop functions  *
-//******************************
-
-//******************************
-// Start Parser                *
-//******************************
-	function addLines(message)
-	{
-		parts = message.split("\n");
-		for (var i=0;i<parts.length;i++)
-		{
-			if (parts[i].length > 2)
-			{
-				addLine(parts[i]);
-			}
-		}
-	}
-	function addLine(message)
-	{
-		if (!message || message == null || message == undefined)
-			return;
-		lnNum = parseInt(message.split(":")[0]);
-		curLine = parseInt(curLine);
-		if (lnNum > curLine)
-			curLine = lnNum;
-		doScroll = false;
-		if (mBoxCont.clientHeight + mBoxCont.scrollTop > mBoxCont.scrollHeight - 50) doScroll = true;
-		//messageBox = document.getElementById("MessageBox");
-		/*
-		if ("\v" != "v") //If IE, take the slow but sure route (This is enough of a performance hit in all browsers to use the optimized code if possible. Also, IE can go fuck itself.)
-			mBoxCont.innerHTML = '<table style="width:100%" class="messageBox" id="MessageBox">' + messageBox.innerHTML + parseMessage(message) + '</table>';
-		else //If not IE, yay!
-			messageBox.innerHTML = messageBox.innerHTML + parseMessage(message);*/
-		var row = parseMessage(message);
-		if (row)
-			messageBox.appendChild(row);
-		if (doScroll)mBoxCont.scrollTop = mBoxCont.scrollHeight + 50;
-	}
-	
-	function parseMessage(message) //type of message
-	{
-		a = message;
-		var parts = message.split(":");
-		lnumber = parts[0];
-		type = parts[1];
-		online = parts[2];
-		parsedMessage = "";
-		
-		for (i = 4;i < parts.length;i++)
-			parts[i] = base64.decode(parts[i]);
-		name = clickable_names(parts[4],online);
-		var undefined;
-		if (parts[5] == undefined || parts[5] == "")
-			parts[5] = " ";
-		if (parts[5] != undefined && parts[5] != null)
-		{
-			parsedMessage = parseColors(parts[5]);
-			if (parts[5].toLowerCase().indexOf(userName.toLowerCase().substr(0,4)) >= 0 && hasLoaded && notifications && parts[4].toLowerCase() != "new")
-			{
-				showNotification("<" + parts[4] + "> " + parts[5]);
-				if (highDing)
-				{
-					document.getElementById('ding').play();
-				}
-			}
-		}
-		if ((type == "message" || type == "action") && parts[4].toLowerCase() != "new")
-		{
-			parsedMessage = parseHighlight(parsedMessage);
-		}
-		retval = "";
-		displayMessage = true;
-		tdTime = document.createElement('td');
-		tdTime.className="irc-date";
-		tdName = document.createElement('td');
-		tdName.className="name";
-		tdName.innerHTML = '*';
-		tdMessage = document.createElement('td');
-		tdMessage.className=type;
-		switch (type)
-		{
-			case "reload":
-				startIndicator();
-				cancelRequest();
-				hasLoaded = false;
-				scrolledDown = true;
-				curLine = 0;
-				UserListArr = Array();
-				userListDiv.innerHTML = "";
-				drawChannels();
-				var body= document.getElementsByTagName('body')[0];
-				var script= document.createElement('script');
-				script.type= 'text/javascript';
-				script.src= 'Load.php?count=125&channel=' + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature) + "&time=" + (new Date).getTime();;
-				script.onload= function(){parseUsers();startLoop();mBoxCont.scrollTop = mBoxCont.scrollHeight;hasLoaded = true;stopIndicator();};
-				body.appendChild(script);
-				displayMessage = false;
-				break;
-			case "join":
-				tdMessage.innerHTML = name + " has joined "+getChannelDe();
-				addUserJoin(parts[4],online);
-				if (online == "1")
-					return "";
-				break;
-			case "part":
-				tdMessage.innerHTML = name + " has left "+getChannelDe()+" (" + parsedMessage + ")";
-				removeUser(parts[4]);
-				if (online == "1")
-					return "";
-				break;
-			case "quit":
-				tdMessage.innerHTML = name + " has quit IRC (" + parsedMessage + ")";
-				removeUser(parts[4]);
-				break;
-			case "kick":
-				tdMessage.innerHTML = name + " has kicked " + parts[5] + " from "+getChannelDe()+" (" + parts[6] + ")";
-				removeUser(parts[4]);
-				break;
-			case "message":
-				tdName.innerHTML = name;
-				tdMessage.innerHTML = parsedMessage;break;
-			case "action":
-				tdMessage.innerHTML = name + " " + parsedMessage;break;
-			case "mode":
-				tdMessage.innerHTML = name + " set "+getChannelDe()+" mode " + parts[5];break;
-			case "nick":
-				tdMessage.innerHTML = name + " has changed his nick to " + parsedMessage;
-				removeUser(parts[4]);
-				addUserJoin(parts[5],online);
-				break;
-			case "topic":
-				if (name!="" && name!="undefined" && name!=" " && (typeof name != 'undefined')) {
-					tdMessage.innerHTML = name + " has changed the topic to " + parsedMessage;
-				} else {
-					displayMessage = false;
-				}
-				setTopic(parsedMessage);
-				break;
-			case "internal":
-				tdMessage.innerHTML = parts[4];
-			break;
-			case "server":
-				tdMessage.innerHTML = parsedMessage;
-				break;
-			case "pm":
-				if (getChannelDe().toLowerCase() != ("*" + parts[4]).toLowerCase() && parts[4] != userName)//Not in the PM window
-				{
-					if (!hasLoaded)
-						return "";
-					tdMessage.innerHTML = parsedMessage;
-					tdName.innerHTML = "(PM)" + name;
-					if (hasLoaded)
-					{
-						openPMWindow(parts[4]);
-						if (notifications)
-							showNotification("(PM) <" + parts[4] + "> " + parts[5]);
-						if (highDing)
-								document.getElementById('ding').play();
-						document.getElementById("*" + parts[4]).style.color="#C22";
-					}
-				}
-				else
-				{
-					tdMessage.className="message";
-					tdMessage.innerHTML = parsedMessage; //In the PM window
-					tdName.innerHTML = name;
-				}
-			break;
-			case "curline":
-				return "";
-			break;
-			case "highlight":
-				if (parts[6].toLowerCase() == "new") return "";
-				//document.getElementById(parts[4]).style.color="#C22"; //This call will fail if they aren't in the chan. Crude, but effective.
-				if (notifications)
-					showNotification("(" + parts[4] + ") <" + parts[6] + "> " + parts[7]);
-				if (highDing)
-					document.getElementById('ding').play();
-				
-				
-				return "";
-			break;
-			case "default":
-				return "";
-			break;
-		}
-		var row = document.createElement("tr");
-		
-		//pretag = '<tr style="width:100%;">';
-		doHigh = !doHigh;
-		if (lineHigh && doHigh && displayMessage)
-		{
-			//pretag = '<tr style="width:100%;" class="linehigh">';
-			row.className = "linehigh";
-		}
-		doLineHigh = !doLineHigh;
-		if (type != "internal") d = new Date(parts[3]*1000);
-		if (type == "internal") 
-		{
-			d = new Date();
-		}
-		tdTime.innerHTML = '[' + d.toLocaleTimeString() + ']';
-		tdTime.style.height="1px";
-		tdName.style.height="1px";
-		tdMessage.style.height="1px";
-		if (showTime) row.appendChild(tdTime);
-		row.appendChild(tdName);
-		row.appendChild(tdMessage);
-		
-		row.style.width="100%";
-		row.style.height="1px";
-		refreshThis(row);
-		if (tdName.innerHTML == "*")
-			statusTxt = tdName.innerHTML + " ";
-		else
-			statusTxt = "<" + StripHTML(tdName.innerHTML) + "> ";			
-		if (showTime)
-			statusTxt = "[" + d.toLocaleTimeString() + "] " + statusTxt;
-			
-		statusTxt = statusTxt + StripHTML(tdMessage.innerHTML);
-		changeStatusBarText(statusTxt);
-		if (displayMessage)
-			return row;
-		else
-			return;
-	}
-	function fixMBoxContHeight() {
-		mBoxCont.scrollTop = mBoxCont.scrollHeight;
-	}
-	function parseSmileys(s) { //smileys
-		if (showSmileys) {
-			var addStuff = "";
-			if (scrolledDown)
-				addStuff = "onload='fixMBoxContHeight();'";
-			s = s.replace(/(^| )(::\)|::-\))/g,"$1<img src='smileys/rolleyes.gif' alt='Roll Eyes' "+addStuff+">");
-			s = s.replace(/(^| )(:\)|:-\))/g,"$1<img src='smileys/smiley.gif' alt='smiley' "+addStuff+">");
-			s = s.replace(/(^| )(;\)|;-\))/g,"$1<img src='smileys/wink.gif' alt='Wink' "+addStuff+">");
-			s = s.replace(/(^| )(&gt;:D|&gt;:-D)/g,"$1<img src='smileys/evil.gif' alt='Evil' "+addStuff+">");
-			s = s.replace(/(^| )(:D|:-D)/g,"$1<img src='smileys/cheesy.gif' alt='Cheesy' "+addStuff+">");
-			s = s.replace(/(^| )(;D|;-D)/g,"$1<img src='smileys/grin.gif' alt='Grin' "+addStuff+">");
-			s = s.replace(/(^| )(&gt;:\(|&gt;:-\()/g,"$1<img src='smileys/angry.gif' alt='Angry' "+addStuff+">");
-			s = s.replace(/(^| )(:\(|:-\()/g,"$1<img src='smileys/sad.gif' alt='Sad' "+addStuff+">");
-			s = s.replace(/(^| )(:o|:O|:-o|:-O)/g,"$1<img src='smileys/shocked.gif' alt='Shocked' "+addStuff+">");
-			s = s.replace(/(^| )(8\))/g,"$1<img src='smileys/cool.gif' alt='Cool' "+addStuff+">");
-			s = s.replace(/(^| )\?\?\?/g,"$1<img src='smileys/huh.gif' alt='Huh' "+addStuff+">");
-			s = s.replace(/(^| )(:P|:-P|:p|:-p)/g,"$1<img src='smileys/tongue.gif' alt='Tongue' "+addStuff+">");
-			s = s.replace(/(^| )(:\[|:-\[)/g,"$1<img src='smileys/embarrassed.gif' alt='Embarrassed' "+addStuff+">");
-			s = s.replace(/(^| )(:x|:-x|:X|:-X)/g,"$1<img src='smileys/lipsrsealed.gif' alt='Lips Sealed' "+addStuff+">");
-			s = s.replace(/(^| )(:\\|:-\\)/g,"$1<img src='smileys/undecided.gif' alt='Undecided' "+addStuff+">");
-			s = s.replace(/(^| ):-\*/g,"$1<img src='smileys/kiss.gif' alt='Kiss' "+addStuff+">");
-			s = s.replace(/(^| )(:'\(|:'-\()/g,"$1<img src='smileys/cry.gif' alt='Cry' "+addStuff+">");
-			s = s.replace(/:thumbsup:/g,"<img src='smileys/thumbsupsmiley.gif' alt='Thumbs Up' "+addStuff+">");
-			s = s.replace(/(^| )O\.O/g,"$1<img src='smileys/shocked2.gif' alt='Shocked' "+addStuff+">");
-			s = s.replace(/(^| )\^-\^/g,"$1<img src='smileys/azn.gif' alt='Azn' "+addStuff+">");
-			s = s.replace(/(^| )&gt;B\)/g,"$1<img src='smileys/alien2.gif' alt='Alien' "+addStuff+">");
-			s = s.replace(/(:banghead:|:headbang:)/g,"<img src='smileys/banghead.gif' alt='Bandhead' "+addStuff+">");
-			s = s.replace(/:angel:/g,"<img src='smileys/ange.gif' alt='Angel' "+addStuff+">");
-			s = s.replace(/(^| )\._\./g,"$1<img src='smileys/blah.gif' alt='Blah' "+addStuff+">");
-			s = s.replace(/:devil:/g,"<img src='smileys/devil.gif' alt='Devil' "+addStuff+">");
-			s = s.replace(/(^| )&lt;_&lt;/g,"$1<img src='smileys/dry.gif' alt='Dry' "+addStuff+">");
-			s = s.replace(/:evillaugh:/g,"<img src='smileys/evillaugh.gif' alt='Evil Laugh' "+addStuff+">");
-			s = s.replace(/:crazy:/g,"<img src='smileys/fou.gif' alt='Crazy' "+addStuff+">");
-			s = s.replace(/:hyper:/g,"<img src='smileys/happy0075.gif' alt='Hyper' "+addStuff+">");
-			s = s.replace(/:love:/g,"<img src='smileys/love.gif' alt='Love' "+addStuff+">");
- 			s = s.replace(/:mad:/g,"<img src='smileys/mad.gif' alt='Mad' "+addStuff+">");
-			s = s.replace(/:w00t:/g,"<img src='smileys/smiley_woot.gif' alt='w00t' "+addStuff+">");
-			s = s.replace(/(^| )\*\.\*/g,"$1<img src='smileys/psychedelicO_O.gif' alt='O.O.O' "+addStuff+">");
-			s = s.replace(/(^| )D:/g,"$1<img src='smileys/bigfrown.gif' alt='Big Frown' "+addStuff+">");
-			s = s.replace(/(^| )(XD|xD)/g,"$1<img src='smileys/XD.gif' alt='XD' "+addStuff+">");
-			s = s.replace(/(^| )x\.x/g,"$1<img src='smileys/X_X.gif' alt='x.x' "+addStuff+">");
-			s = s.replace(/:ninja:/g,"<img src='smileys/ninja.gif' alt='Ninja' "+addStuff+">");
-		}
-		return s;
-	}
-	
-	function parseColors(colorStr) //colors
-	{
-		if (!colorStr || colorStr == null || colorStr == undefined) return;
-		colorStr = clickable_links(colorStr);
-		colorStr = parseSmileys(colorStr);
-		//lcount = 0;
-		//a = colorStr;
-		var arrayResults = Array();
-		colorStr+="\x0f";
-		arrayResults = colorStr.split(RegExp("([\x02\x03\x0f\x16\x1d\x1f])"));
-		colorStr="";
-		var isBool = false;
-		var numSpan = 0;
-		var isItalic = false;
-		var isUnderline = false;
-		var s;
-		var colorStrTemp = "1,0";
-		for (var i=0;i<arrayResults.length;i++) {
-			switch (arrayResults[i]) {
-				case "\x03":
-					for (var j=0;j<numSpan;j++)
-						colorStr+="</span>";
-					numSpan=1;
-					i++;
-					colorStrTemp = arrayResults[i];
-					s=arrayResults[i].replace(/^([0-9]{1,2}),([0-9]{1,2})/g,"<span class=\"fg-$1\"><span class=\"bg-$2\">");
-					if (s==arrayResults[i]) {
-						s=arrayResults[i].replace(/^([0-9]{1,2})/g,"<span class=\"fg-$1\">");
-					} else {
-						numSpan++;
-					}
-					colorStr+=s;
-					break;
-				case "\x02":
-					isBool = !isBool;
-					if (isBool) {
-						colorStr+="<b>";
-					} else {
-						colorStr+="</b>";
-					}
-					break;
-				case "\x1d":
-					isItalic = !isItalic;
-					if (isItalic) {
-						colorStr+="<i>";
-					} else {
-						colorStr+="</i>";
-					}
-					break;
-				case "\x16":
-					for (var j=0;j<numSpan;j++)
-						colorStr+="</span>";
-					numSpan=2;
-					var stemp;
-					s=colorStrTemp.replace(/^([0-9]{1,2}),([0-9]{1,2}).+/g,"<span class=\"fg-$2\"><span class=\"bg-$1\">");
-					stemp=colorStrTemp.replace(/^([0-9]{1,2}),([0-9]{1,2}).+/g,"$2,$1");
-					if (s==colorStrTemp) {
-						s=colorStrTemp.replace(/^([0-9]{1,2}).+/g,"<span class=\"fg-0\"><span class=\"bg-$1\">");
-						stemp=colorStrTemp.replace(/^([0-9]{1,2}).+/g,"0,$1");
-					}
-					colorStrTemp = stemp;
-					colorStr+=s;
-					break;
-				case "\x1f":
-					isUnderline = !isUnderline;
-					if (isUnderline) {
-						colorStr+="<u>";
-					} else {
-						colorStr+="</u>";
-					}
-					break;
-				case "\x0f":
-					if (isUnderline) {
-						colorStr+="</u>";
-						isUnderline=false;
-					}
-					if (isItalic) {
-						colorStr+="</i>";
-						isItalic=false;
-					}
-					if (isBool) {
-						colorStr+="</b>"
-						isBool = false;
-					}
-					for (var j=0;j<numSpan;j++)
-						colorStr+="</span>";
-					numSpan=0;
-					break;
-				default:
-					colorStr+=arrayResults[i];
-			}
-		}
-		/*Strip codes*/
-		colorStr = colorStr.replace(/(\x03|\x02|\x1F|\x09|\x0F)/g,"");
-
-		return(colorStr);
-	}
-	function parseHighlight(text) //highlight
-	{
-		if (text.toLowerCase().indexOf(userName.toLowerCase().substr(0,4)) >= 0)
-		{
-			style = "";
-			if (highRed)
-				style = style + "color:#C73232;";
-			if (highBold)
-				style = style + "font-weight:bold;";
-			return '<span class="highlight" style="' + style + '">' + text + "</span>";
-		}
-		return text;
-	}
-	function clickable_links(text) //urls
-	{
-		if (!text || text == null || text == undefined) return;
-		//text = text.replace(/http:\/\/www\.omnimaga\.org\//g,"h111://www.omnimaga.org/");
-		//text = text.replace(/http:\/\/ourl\.ca\//g,"h111://ourl.ca/");
-		//text = text.replace(/((h111:\/\/(www\.omnimaga\.org\/|ourl\.ca))[-a-zA-Z0-9@:;%_+.~#?&//=]+)/, '<a target="_top" href="$1">$1</a>');
-		text = text.replace(RegExp("(^|.)(((f|ht)(tp|tps):\/\/)[^\\s\x02\x03\x0f\x16\x1d\x1f]*)","g"),'$1<a target="_blank" href="$2">$2</a>');
-		text = text.replace(RegExp("(^|\\s)(www\.[^\\s\x02\x03\x0f\x16\x1d\x1f]*)","g"),'$1<a target="_blank" href="http://$2">$2</a>');
-		//text = text.replace(/h111/g,"http");
-		return text;
-	}
-	function clickable_names(name,isOnline) //omnomirc names
-	{
-		if (isOnline == "1")
-			return '<a target="_top" href="http://www.omnimaga.org/index.php?action=ezportal;sa=page;p=13&userSearch=' + name + '">' + colored_names(name) + '</a>';
-		return colored_names(name);
-	}
-	function colored_names(name) //colored neames (duh)
-	{
-		if (!coloredNames)
-			return name;
-		if (!name || name == null || name == undefined)
-			return;
-		rcolors = Array(19, 20, 22, 24, 25, 26, 27, 28, 29);
-		sum = i = 0; 
-		while (name[i])
-			sum += name.charCodeAt(i++);
-		sum %= 9;
-		return '<span class="uName-'+rcolors[sum]+'">'+name+'</span>';
-	}
-	
-	function refreshThis(elementOnShow){
-	   var msie = 'Microsoft Internet Explorer';
-	   var tmp = 0;
-	   if (navigator.appName == msie){
-		  tmp = elementOnShow.offsetTop  +  'px';
-	   }else{
-		  tmp = elementOnShow.offsetTop;
-	   }
-	}
-	
-//******************************
-// End Parser                  *
-//******************************
-
-//******************************
-// Userlist Start              *
-//******************************
-	userListContainer = document.getElementById("UserListArrContainer");
-	userListDiv = document.getElementById("UserList");
-	function addUser(user)
-	{
-		UserListArr.push(user);
-	}
-	
-	function addUserJoin(user,online)
-	{
-		if(!hasLoaded) return;
-		var userp = base64.encode(user) + ":" + online;
-		UserListArr.push(userp);
-		parseUsers();
-	}
-	
-	function parseUsers()
-	{
-		if (!userListDiv || userListDiv == null)
-		 userListDiv = document.getElementById("UserList");
-		userText = "";
-		i = 0;
-		UserListArr.sort(function(a,b)
-						{
-							var al=base64.decode(a).toLowerCase(),bl=base64.decode(b).toLowerCase();
-							return al==bl?(a==b?0:a<b?-1:1):al<bl?-1:1;
-						});
-		for (i=0;i<UserListArr.length;i++)
-		{
-			parts = UserListArr[i].split(":");
-			if (parts[1] == "0") userText = userText + "#" + base64.decode(parts[0]) + "<br/>";
-			if (parts[1] == "1") 
-				userText = userText + '<a target="_top" href="http://www.omnimaga.org/index.php?action=ezportal;sa=page;p=13&userSearch=' +base64.decode(parts[0]) + 
-				'"><img src="http://omnomirc.www.omnimaga.org/omni.png" alt="Omnimaga User" title="Omnimaga User" border=0 width=8 height=8 />' + base64.decode(parts[0]) + '</a><br/>';
-			if (parts[1] == "2") userText = userText + "!" + base64.decode(parts[0]) + "<br/>";
-		}
-		userText = userText + "<br/><br/>";
-		userListDiv.innerHTML = userText;
-	}
-	
-	function removeUser(user)
-	{
-		if(!hasLoaded) return;
-		for (i in UserListArr)
-		{
-			parts = UserListArr[i].split(":");
-			if (base64.decode(parts[0]) == user)
-				UserListArr.splice(i,1);
-		}
-		parseUsers();
-	}
-	
-	
-//******************************
-// Userlist End                *
-//******************************
-//******************************
-// Load Start                  *
-//******************************
-	function load()
-	{
-		cookieLoad();
-		lineHigh = getOption(6,"T") == "T";
-		doHigh = false;
-		coloredNames = getOption(3,"F") == "T";
-		highRed = getOption(2,"T") == "T";
-		highBold = getOption(1,"T") == "T";
-		enabled = getOption(5,"T") == "T";
-		notifications = getOption(7,"F") == "T";
-		highDing = getOption(8,"F") == "T";
-		showExChans = getOption(9,"F") == "T";
-		showTime = getOption(10,"F") == "T";
-		doStatusUpdates = getOption(11,"T") == "T";
-		showSmileys = getOption(12,"T") == "T";
-		hasLoaded = false;
-		if (!showSmileys) {
-			document.getElementById('smileyMenuButton').src='smileys/smiley_grey.png';
-			document.getElementById('smileyMenuButton').style.cursor='default';
-		}
-		if (!enabled)
-		{
-			mboxCont.appendChild(messageBox);
-			messageBox.innerHTML = '<a href="#" onclick="toggleEnable();">OmnomIRC is disabled. Click here to enable.</a>';
-			return false;
-		}
-		doLineHigh=true;
-		var body= document.getElementsByTagName('body')[0];
-		var chanScr= document.createElement('script');
-		chanScr.type= 'text/javascript';
-		chanScr.src= 'Channels.php';
-		chanScr.onload= function(){channelSelectorCallback();readOldMessagesCookies();};
-		body.appendChild(chanScr);
-		chanList = document.getElementById('chanList');
-		isBlurred();
-		if (userName == "Guest"){
-			var message = document.getElementById("message");
-			message.disabled = "true";
-			message.value = "You need to login if you want to chat!";
-		}
-	}
-	//window.onLoad = load();
-//******************************
-// Load End                    *
-//******************************
-
-//******************************
-// Links Start                 *
-//******************************
-	function toggleEnable()
-	{
-		setOption(5,!(getOption(5,'T') == 'T')?'T':'F');
-		window.location.reload(true);
-	}
-//******************************
-// Links End                   *
-//******************************
-
-//******************************
-// Message Send Start          *
-//******************************
-
-	function sendAJAXMessage(name,signature,message,chan) //'chan' kept for legacy purposes.
-	{
-		if (message[0] == "/")
-		{
-			if (parseCommand(message.substr(1)))
-				return;
-		}
-		if (getChannelDe()[0] == "*")
-		{
-			d = new Date();
-			str="0:pm:0:" + d.getTime()/1000 + ":" + base64.encode(name) + ":" + base64.encode(HTMLEncode(message)); //Print PMs locally.
-			//addLine(str);
-		}
-		var theURL = "message.php?nick=" + base64.encode(name) + "&signature="+base64.encode(signature)+"&message=" + base64.encode(message) +"&channel=" + getChannelEn();
-		xmlhttp2=new XMLHttpRequest();
-		xmlhttp2.open("GET", theURL ,false);
-		xmlhttp2.send(null);
-	}
-//******************************
-// Message Send End            *
-//******************************
-
-//******************************
-// Channel Selector Start      *
-//******************************
-	function channelSelectorCallback()
-	{
-		messageBox.cellPadding = "0px";
-		messageBox.cellSpacing = "0px";
-		if (showExChans)
-			for (i in exChannels)
-				channels.push(exChannels[i]);
-		/*if (moreChans)
-			for(i in moreChans)
-				channels.push(base64.encode(moreChans[i]));*/
-		loadChannels(); //From cookies
-		drawChannels();
-		scrolledDown = true;
-		
-		var body= document.getElementsByTagName('body')[0];
-		var script= document.createElement('script');
-		script.type= 'text/javascript';
-		script.src= 'Load.php?count=125&channel=' + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature) + "&time=" + (new Date).getTime();
-		script.onload= function(){mBoxCont.appendChild(messageBox);parseUsers();startLoop();mBoxCont.scrollTop = mBoxCont.scrollHeight;hasLoaded = true;stopIndicator();};
-		body.appendChild(script);
-	}
-	
-	function changeChannel()
-	{
-		//Empty out dirty holders
-		cancelRequest();
-		startIndicator();
-		mBoxCont.innerHTML = '';
-		messageBox = document.createElement("table");
-		messageBox.className='MessageBox';
-		messageBox.style.width="100%";
-		messageBox.style.height="100%";
-		messageBox.cellPadding = "0px";
-		messageBox.cellSpacing = "0px";
-		hasLoaded = false;
-		scrolledDown = true;
-		curLine = 0;
-		UserListArr = Array();
-		userListDiv.innerHTML = "";
-		
-		drawChannels();	
-		var body= document.getElementsByTagName('body')[0];
-		var script= document.createElement('script');
-		script.type= 'text/javascript';
-		script.src= 'Load.php?count=125&channel=' + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature) + "&time=" + (new Date).getTime();;
-		script.onload= function(){mBoxCont.appendChild(messageBox);parseUsers();startLoop();mBoxCont.scrollTop = mBoxCont.scrollHeight;hasLoaded = true;stopIndicator();};
-		body.appendChild(script);
-	}
-	
-	function drawChannels()
-	{
-		var chanText = '';//'<table>';
-		for (i in channels)
-		{
-		var chanName = base64.decode(channels[i]);
-			//partChannel
-			style = "chan";
-			chanText += '<table class="chanList"><td id="' + chanName + '" class="';
-			if (getChannelIndex()==i)
-				style = "curchan";
-			chanText += style;
-			chanText += '">';
-			if (chanName.substr(0,1) != "#")
-				chanText += '<span onclick="partChannel(\'' + chanName + '\')" onmouseover="this.style.color=\'#C73232\';this.style.font-weight=\'bolder\'" onmouseout="this.style.color=\'' + ((getChannelIndex()==i)?'#FFF':'#22C') + '\';this.style.font-weight=\'normal\'">x</span> ';
-			chanText += '<span onclick="selectChannel(' + i + ')">';
-			chanText += chanName;
-			chanText += "</span>";
-			chanText += "</td></table>";
-		}
-		//chanText += "</table>";
-		document.getElementById("ChanList").innerHTML = chanText;
-	}
-	
-	function selectChannel(index)
-	{
-		setOption(4,String.fromCharCode(index + 32),true);
-		changeChannel();
-		readOldMessagesCookies();
-	}
-	
-	function getChannelEn()
-	{
-		return channels[getChannelIndex()];
-	}
-	
-	function getChannelDe()
-	{
-		return base64.decode(channels[getChannelIndex()]);
-	}
-	
-	function getChannelIndex()
-	{
-		var index = getOption(4,String.fromCharCode(32)).charCodeAt(0) - 32;
-		if (index > (channels.length - 1))
-			index = 0;
-		return index;
-	}
-//******************************
-// Channel Selector End        *
-//******************************
-
-//******************************
-// Tab Completion Start        *
-//******************************
-
-function searchUser(start,startAt)
-{
-	if(!startAt)
-		startAt = 0;
-	for (i=0;i<UserListArr.length;i++)
-	{
-		parts = UserListArr[i].split(":");
-		name = base64.decode(parts[0]).toLowerCase();
-		if (name.indexOf(start.toLowerCase()) == 0 && startAt-- <= 0)
-			return base64.decode(parts[0]);
-	}
-	return start;
-}
-	
-//******************************
-// Tab Completion End          *
-//******************************
-
-//******************************
-// Commands Start              *
-//******************************
-	function setTopic(message)
-	{
-		document.getElementById('topic').innerHTML = message;
-	}
-	function sendInternalMessage(message)
-	{
-		d = new Date();
-		str="0:internal:0:" + parseInt(d.getTime()*1000) + ":" + base64.encode(message);
-		addLine(str);
-	}
-	
-	function OmnomIRC_Error(message)
-	{
-		sendInternalMessage('<span style="color:#C73232;">'+message+"</span>");
-	}
-	
-	function joinChannel(paramaters)
-	{
-			if (paramaters.substr(0,1) != "@" && paramaters.substr(0,1) != "#")
-				paramaters = "@" + paramaters;
-			//Check if it already exists or not. If so, try to join it.
-			var count = 0;
-			for (i in channels)
-			{
-				if (base64.decode(channels[i]).toLowerCase() == paramaters.toLowerCase())
-				{
-					selectChannel(count);
-					return;
-				}
-				count++;
-			}
-			//Channel not in existance.
-			if (paramaters.substr(0,1) == "#")
-			{
-				sendInternalMessage('<span style="color:#C73232;"> Join Error: Cannot join new channels starting with #.</span>');
-				return;
-			}
-			//Valid chan, add to list.
-			channels.push(base64.encode(paramaters));
-			saveChannels();
-			selectChannel(channels.length-1);
-	}
-	
-	function openPMWindow(paramaters)
-	{
-		if (paramaters.substr(0,1) == "@" && paramaters.substr(0,1) == "#")
-			sendInternalMessage('<span style="color:#C73232;"> Query Error: Cannot query a channel. Use /join instead.</span>');
-		if (paramaters.substr(0,1) != "*")
-			paramaters = "*" + paramaters;
-		for (i in channels)
-			if (base64.decode(channels[i]).toLowerCase() == paramaters.toLowerCase())
-				return; //PM already opened, don't open another.
-		channels.push(base64.encode(paramaters));
-		saveChannels();
-		drawChannels();
-	}
-	
-	function partChannel(paramaters)
-	{
-		if (paramaters == "")
-		{
-			partChannel(getChannelDe());
-			return;
-		}
-		if (paramaters.substr(0,1) != "#")
-		{
-			for (i in channels)
-			{
-				if (base64.decode(channels[i]) == paramaters)
-				{
-					
-					if (getChannelDe() == paramaters)
-					{
-						channels.splice(i,1);
-						selectChannel(i-1);
-					}
-					else
-					{
-						channels.splice(i,1);
-						drawChannels();
-					}
-					saveChannels();
-					return;
-				}
-			}
-			if (paramaters.substr(0,1) != "@" && paramaters.substr(0,1) != "#")
-			{
-				paramaters = "@" + paramaters;
-				partChannel(paramaters);
-			}
-			else
-			{
-				sendInternalMessage('<span style="color:#C73232;"> Part Error: I cannot part ' + paramaters + '. (You are not in it.)</span>');
-			}
-		}	
-		else
-		sendInternalMessage('<span style="color:#C73232;"> Part Error: I cannot part ' + paramaters + '. (That is not an OmnomIRC channel.)</span>');
-	}
-	
-	function parseCommand(message)
-	{
-		var command = message.split(" ")[0];
-		var paramaters = message.substr(command.length+1).toLowerCase();
-		switch(command)
-		{
-			case "j":
-			case "join":
-				joinChannel(paramaters);
-			return true;
-			case "q":
-			case "query":
-				openPMWindow(paramaters);
-			return true;
-			case "win":
-			case "w":
-			case "window":
-				if (parseInt(paramaters) > channels.length || parseInt(paramaters) <= 0)
-					sendInternalMessage('<span style="color:#C73232;"> Invalid window selection. Valid options: 1-'+channels.length+'</span>');
-				else
-					selectChannel(parseInt(paramaters)-1);
-			return true;
-			case "p":
-			case "part":
-				partChannel(paramaters);
-			return true;
-			case "test":
-				sendInternalMessage(Signature);
-			return true;
-			default:
-			return false;
-		}
-	}
-//******************************
-// Commands End                *
-//******************************
-
-//******************************
-// Dynamic Channels Start      *
-//******************************
-
-	function loadChannels()
-	{
-		if (document.cookie.indexOf("OmnomChannels") >= 0)
-		{
-			var moreChans = document.cookie.split(";")[0].replace(/^.*OmnomChannels=(.+?)|.*/, "\$1").split("%");
-			for (i in moreChans)
-			{
-				
-				if (moreChans[i][0] != "#" && moreChans[i] != "")
-				{
-					if (moreChans[i][0] == "^") moreChans[i][0] = "#";
-					channels.push(moreChans[i]);
-				}
-			}
-		}
-	}
-
-	function saveChannels()
-	{
-		var chanList = "";
-		for (i in channels)
-		{
-			if (base64.decode(channels[i]).substr(0,1) != "#")
-			{
-				chanList = chanList + channels[i] + "%";
-			}
-		}
-		chanList = chanList.substr(0,chanList.length-1);
-		document.cookie = "OmnomChannels=" + chanList + ";expires=Sat, 20 Nov 2286 17:46:39 GMT;";
-	}
-
-//******************************
-// Dynamic Channels End        *
-//******************************
-
-//******************************
-// Focus Handler Start         *
-//******************************
-var focusHandlerRegistered = false;
-function isBlurred() {
-	if  (focusHandlerRegistered == undefined)
-		focusHandlerRegistered = false;
-	if (!focusHandlerRegistered)
-		registerFocusHandler();
-	if (parent != undefined)
-		return parent.window.bIsBlurred;
-	else
-		return bIsBlurred;
-}
-
-function registerFocusHandler() {
-	focusHandlerRegistered = true;
-	if (parent != undefined)//Child(iframe)
-	{
-		parent.window.bIsBlurred = false;
-		parent.window.onblur = function(){ parent.window.bIsBlurred=true;if(console.log)console.log("Blur");return true; }
-		parent.window.onfocus= function(){ parent.window.bIsBlurred=false;resize();if(console.log)console.log("Focus");return true;}
-	}
-	else //Not a child
-	{
-		window.onblur = function(){ bIsBlurred=true;if(console.log)console.log("Blur");return true; }
-		window.onfocus= function(){ bIsBlurred=false;resize();if(console.log)console.log("Focus");return true;}
-	}
-}
-//******************************
-// Focus Handler End           *
-//******************************
-
-//******************************
-// Status Bar Updater Start    *
-//******************************
-statusTxt = "";
-statusStarted = false;
-function startStatusBarUpdate()
-{
-	if (!doStatusUpdates) return;
-	if (!statusStarted)
-		setInterval(doStatusBarUpdate,500);
-	statusStarted = true;
-}
-
-function doStatusBarUpdate()
-{
-	window.status=statusTxt;
-	if (parent)
-		parent.window.status=statusTxt;
-}
-
-function changeStatusBarText(msg)
-{
-	statusTxt = msg;
-	if (!statusStarted)
-		startStatusBarUpdate();
-}
-//******************************
-// Status Bar Updater End      *
-//******************************
-
-//******************************
-// HTML Tools Start            *
-//******************************
- function HTMLEncode(str)
- {
-   var div = document.createElement('div');
-   var text = document.createTextNode(str);
-   div.appendChild(text);
-   return div.innerHTML;
-  }
-  function StripHTML(str)
-  {
-	var tmp = document.createElement("div");
-	tmp.innerHTML = str;
-	return tmp.textContent||tmp.innerText;
-  }
-  String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ""); };
-//******************************
-// HTML Tools End              *
-//******************************
+
+/*
+    OmnomIRC COPYRIGHT 2010,2011 Netham45
+
+    This file is part of OmnomIRC.
+
+    OmnomIRC is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    OmnomIRC is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with OmnomIRC.  If not, see <http://www.gnu.org/licenses/>.
+*/
+(function(window,undefined){
+	document.domain=HOSTNAME;
+
+	var messageList = [],
+		UserListArr = [],
+		curLine = 0,
+		//messageBox = document.getElementById("MessageBox");
+		messageBox = window.messageBox = document.createElement("table"),
+		mBoxCont = window.mBoxCont = document.getElementById("mboxCont"),
+		Userlist = [],
+		scrolledDown = true,
+		statusTxt = "",
+		statusStarted = false,
+		focusHandlerRegistered = false,
+		userListContainer = document.getElementById("UserListArrContainer"),
+		userListDiv = document.getElementById("UserList");
+	messageBox.style.width="100%";
+	messageBox.style.height="100%";
+	messageBox.className='MessageBox';
+//******************************
+// Start Request Loop functions*
+//******************************
+	function startLoop(){
+		xmlhttp=getAjaxObject();
+		if (xmlhttp==null) { 
+			alert ("Your browser does not support AJAX! Please update for OmnomIRC compatibility.");
+			return;
+		}
+		xmlhttp.onreadystatechange=getIncomingLine;
+		sendRequest();
+	}
+	inRequest = false;
+	errorCount = 0;
+	function cancelRequest(){
+		xmlhttp.abort();
+		inRequest = false;
+	}
+	function sendRequest(){
+		if(inRequest){
+			return;
+		}
+		url = "Update.php?lineNum=" + curLine + "&channel=" + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature);
+		xmlhttp.open("GET",url,true);
+		if(isBlurred()){
+			setTimeout(function(){
+				xmlhttp.send(null);
+			},2500); //Only query every 2.5 seconds maximum if not foregrounded.
+		}else{
+			setTimeout(function(){
+				xmlhttp.send(null);
+			},75); //Wait for everything to get parsed before requesting again.
+		}
+		inRequest = true;
+	}
+	function getIncomingLine(){
+		if(xmlhttp.readyState==4 || xmlhttp.readyState=="complete"){ 
+			inRequest = false;
+			if(xmlhttp.responseText == "Could not connect to SQL DB." || xmlhttp.status != 200){
+				errorCount++;
+				if(errorCount == 10){
+					OmnomIRC_Error("OmnomIRC has lost connection to server. Please refresh to reconnect.");
+					return;
+				}else{
+					sendRequest();
+					return;
+				}
+			}
+			if(xmlhttp.status == 200){
+				addLines(xmlhttp.responseText); //Filter out 500s from timeouts
+			}
+			errorCount = 0;
+			sendRequest();
+		}
+	}
+	function getAjaxObject(){
+		xmlhttp=new XMLHttpRequest(); //Decent Browsers
+		if(!xmlhttp || xmlhttp == undefined || xmlhttp == null){
+			xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");  //IE7+
+		}
+		if(!xmlhttp || xmlhttp == undefined || xmlhttp == null){
+			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); //IE6-
+		}
+		return xmlhttp;
+	}
+	
+//******************************
+// End Request Loop functions  *
+//******************************
+
+//******************************
+// Start Parser                *
+//******************************
+	function addLines(message){
+		parts = message.split("\n");
+		for (var i=0;i<parts.length;i++){
+			if (parts[i].length > 2){
+				addLine(parts[i]);
+			}
+		}
+	}
+	var addLine = window.addLine = function(message){
+		if(!message || message == null || message == undefined){
+			return;
+		}
+		lnNum = parseInt(message.split(":")[0]);
+		curLine = parseInt(curLine);
+		if (lnNum > curLine){
+			curLine = lnNum;
+		}
+		doScroll = false;
+		if(mBoxCont.clientHeight + mBoxCont.scrollTop > mBoxCont.scrollHeight - 50){
+			doScroll = true;
+		}
+		//messageBox = document.getElementById("MessageBox");
+		/*
+		if ("\v" != "v") //If IE, take the slow but sure route (This is enough of a performance hit in all browsers to use the optimized code if possible. Also, IE can go fuck itself.)
+			mBoxCont.innerHTML = '<table style="width:100%" class="messageBox" id="MessageBox">' + messageBox.innerHTML + parseMessage(message) + '</table>';
+		else //If not IE, yay!
+			messageBox.innerHTML = messageBox.innerHTML + parseMessage(message);*/
+		var row = parseMessage(message);
+		if(row){
+			messageBox.appendChild(row);
+		}
+		if(doScroll){
+			mBoxCont.scrollTop = mBoxCont.scrollHeight + 50;
+		}
+	}
+	
+	function parseMessage(message){ //type of message
+		a = message;
+		var parts = message.split(":"),
+			lnumber = parts[0],
+			type = parts[1],
+			online = parts[2],
+			parsedMessage = "";
+		
+		for(i = 4;i < parts.length;i++){
+			parts[i] = base64.decode(parts[i]);
+		}
+		name = clickable_names(parts[4],online);
+		var undefined;
+		if(parts[5] == undefined || parts[5] == ""){
+			parts[5] = " ";
+		}
+		if(parts[5] != undefined && parts[5] != null){
+			parsedMessage = parseColors(parts[5]);
+			if(parts[5].toLowerCase().indexOf(userName.toLowerCase().substr(0,4)) >= 0 && hasLoaded && notifications && parts[4].toLowerCase() != "new"){
+				showNotification("<" + parts[4] + "> " + parts[5]);
+				if(highDing){
+					document.getElementById('ding').play();
+				}
+			}
+		}
+		if((type == "message" || type == "action") && parts[4].toLowerCase() != "new"){
+			parsedMessage = parseHighlight(parsedMessage);
+		}
+		retval = "";
+		displayMessage = true;
+		tdTime = document.createElement('td');
+		tdTime.className="irc-date";
+		tdName = document.createElement('td');
+		tdName.className="name";
+		tdName.innerHTML = '*';
+		tdMessage = document.createElement('td');
+		tdMessage.className=type;
+		switch(type){
+			case "reload":
+				startIndicator();
+				cancelRequest();
+				hasLoaded = false;
+				scrolledDown = true;
+				curLine = 0;
+				UserListArr = [];
+				userListDiv.innerHTML = "";
+				drawChannels();
+				var body= document.getElementsByTagName('body')[0],
+					script= document.createElement('script');
+				script.type= 'text/javascript';
+				script.src= 'Load.php?count=125&channel=' + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature) + "&time=" + (new Date).getTime();;
+				script.onload= function(){
+					parseUsers();
+					startLoop();
+					mBoxCont.scrollTop = mBoxCont.scrollHeight;
+					hasLoaded = true;
+					stopIndicator();
+				};
+				body.appendChild(script);
+				displayMessage = false;
+				break;
+			case "join":
+				tdMessage.innerHTML = name + " has joined "+getChannelDe();
+				addUserJoin(parts[4],online);
+				if (online == "1"){
+					return "";
+				}
+				break;
+			case "part":
+				tdMessage.innerHTML = name + " has left "+getChannelDe()+" (" + parsedMessage + ")";
+				removeUser(parts[4]);
+				if (online == "1"){
+					return "";
+				}
+				break;
+			case "quit":
+				tdMessage.innerHTML = name + " has quit IRC (" + parsedMessage + ")";
+				removeUser(parts[4]);
+				break;
+			case "kick":
+				tdMessage.innerHTML = name + " has kicked " + parts[5] + " from "+getChannelDe()+" (" + parts[6] + ")";
+				removeUser(parts[4]);
+				break;
+			case "message":
+				tdName.innerHTML = name;
+				tdMessage.innerHTML = parsedMessage;
+				break;
+			case "action":
+				tdMessage.innerHTML = name + " " + parsedMessage;
+				break;
+			case "mode":
+				tdMessage.innerHTML = name + " set "+getChannelDe()+" mode " + parts[5];
+				break;
+			case "nick":
+				tdMessage.innerHTML = name + " has changed his nick to " + parsedMessage;
+				removeUser(parts[4]);
+				addUserJoin(parts[5],online);
+				break;
+			case "topic":
+				if(name!="" && name!="undefined" && name!=" " && (typeof name != 'undefined')){
+					tdMessage.innerHTML = name + " has changed the topic to " + parsedMessage;
+				}else{
+					displayMessage = false;
+				}
+				setTopic(parsedMessage);
+				break;
+			case "internal":
+				tdMessage.innerHTML = parts[4];
+			break;
+			case "server":
+				tdMessage.innerHTML = parsedMessage;
+				break;
+			case "pm":
+				if (getChannelDe().toLowerCase() != ("*" + parts[4]).toLowerCase() && parts[4] != userName){//Not in the PM window
+					if (!hasLoaded){
+						return "";
+					}
+					tdMessage.innerHTML = parsedMessage;
+					tdName.innerHTML = "(PM)" + name;
+					if (hasLoaded){
+						openPMWindow(parts[4]);
+						if(notifications){
+							showNotification("(PM) <" + parts[4] + "> " + parts[5]);
+						}
+						if(highDing){
+							document.getElementById('ding').play();
+						}
+						document.getElementById("*" + parts[4]).style.color="#C22";
+					}
+				}else{
+					tdMessage.className="message";
+					tdMessage.innerHTML = parsedMessage; //In the PM window
+					tdName.innerHTML = name;
+				}
+				break;
+			case "curline":
+				return "";
+			case "highlight":
+				if (parts[6].toLowerCase() == "new") return "";
+				//document.getElementById(parts[4]).style.color="#C22"; //This call will fail if they aren't in the chan. Crude, but effective.
+				if (notifications)
+					showNotification("(" + parts[4] + ") <" + parts[6] + "> " + parts[7]);
+				if (highDing)
+					document.getElementById('ding').play();
+				
+				
+				return "";
+			case "default":
+				return "";
+		}
+		var row = document.createElement("tr");
+		//pretag = '<tr style="width:100%;">';
+		doHigh = !doHigh;
+		if (lineHigh && doHigh && displayMessage){
+			//pretag = '<tr style="width:100%;" class="linehigh">';
+			row.className = "linehigh";
+		}
+		doLineHigh = !doLineHigh;
+		if (type != "internal"){
+			d = new Date(parts[3]*1000);
+		}
+		if (type == "internal"){
+			d = new Date();
+		}
+		tdTime.innerHTML = '[' + d.toLocaleTimeString() + ']';
+		tdTime.style.height="1px";
+		tdName.style.height="1px";
+		tdMessage.style.height="1px";
+		if (showTime){
+			row.appendChild(tdTime);
+		}
+		row.appendChild(tdName);
+		row.appendChild(tdMessage);
+		row.style.width="100%";
+		row.style.height="1px";
+		refreshThis(row);
+		if(tdName.innerHTML == "*"){
+			statusTxt = tdName.innerHTML + " ";
+		}else{
+			statusTxt = "<" + StripHTML(tdName.innerHTML) + "> ";			
+		}
+		if (showTime){
+			statusTxt = "[" + d.toLocaleTimeString() + "] " + statusTxt;
+		}
+		statusTxt = statusTxt + StripHTML(tdMessage.innerHTML);
+		changeStatusBarText(statusTxt);
+		if(displayMessage){
+			return row;
+		}else{
+			return;
+		}
+	}
+	function fixMBoxContHeight(){
+		mBoxCont.scrollTop = mBoxCont.scrollHeight;
+	}
+	function parseSmileys(s){ //smileys
+		if (showSmileys) {
+			var addStuff = "";
+			if (scrolledDown)
+				addStuff = "onload='fixMBoxContHeight();'";
+			s = s.replace(/(^| )(::\)|::-\))/g,"$1<img src='smileys/rolleyes.gif' alt='Roll Eyes' "+addStuff+">");
+			s = s.replace(/(^| )(:\)|:-\))/g,"$1<img src='smileys/smiley.gif' alt='smiley' "+addStuff+">");
+			s = s.replace(/(^| )(;\)|;-\))/g,"$1<img src='smileys/wink.gif' alt='Wink' "+addStuff+">");
+			s = s.replace(/(^| )(&gt;:D|&gt;:-D)/g,"$1<img src='smileys/evil.gif' alt='Evil' "+addStuff+">");
+			s = s.replace(/(^| )(:D|:-D)/g,"$1<img src='smileys/cheesy.gif' alt='Cheesy' "+addStuff+">");
+			s = s.replace(/(^| )(;D|;-D)/g,"$1<img src='smileys/grin.gif' alt='Grin' "+addStuff+">");
+			s = s.replace(/(^| )(&gt;:\(|&gt;:-\()/g,"$1<img src='smileys/angry.gif' alt='Angry' "+addStuff+">");
+			s = s.replace(/(^| )(:\(|:-\()/g,"$1<img src='smileys/sad.gif' alt='Sad' "+addStuff+">");
+			s = s.replace(/(^| )(:o|:O|:-o|:-O)/g,"$1<img src='smileys/shocked.gif' alt='Shocked' "+addStuff+">");
+			s = s.replace(/(^| )(8\))/g,"$1<img src='smileys/cool.gif' alt='Cool' "+addStuff+">");
+			s = s.replace(/(^| )\?\?\?/g,"$1<img src='smileys/huh.gif' alt='Huh' "+addStuff+">");
+			s = s.replace(/(^| )(:P|:-P|:p|:-p)/g,"$1<img src='smileys/tongue.gif' alt='Tongue' "+addStuff+">");
+			s = s.replace(/(^| )(:\[|:-\[)/g,"$1<img src='smileys/embarrassed.gif' alt='Embarrassed' "+addStuff+">");
+			s = s.replace(/(^| )(:x|:-x|:X|:-X)/g,"$1<img src='smileys/lipsrsealed.gif' alt='Lips Sealed' "+addStuff+">");
+			s = s.replace(/(^| )(:\\|:-\\)/g,"$1<img src='smileys/undecided.gif' alt='Undecided' "+addStuff+">");
+			s = s.replace(/(^| ):-\*/g,"$1<img src='smileys/kiss.gif' alt='Kiss' "+addStuff+">");
+			s = s.replace(/(^| )(:'\(|:'-\()/g,"$1<img src='smileys/cry.gif' alt='Cry' "+addStuff+">");
+			s = s.replace(/:thumbsup:/g,"<img src='smileys/thumbsupsmiley.gif' alt='Thumbs Up' "+addStuff+">");
+			s = s.replace(/(^| )O\.O/g,"$1<img src='smileys/shocked2.gif' alt='Shocked' "+addStuff+">");
+			s = s.replace(/(^| )\^-\^/g,"$1<img src='smileys/azn.gif' alt='Azn' "+addStuff+">");
+			s = s.replace(/(^| )&gt;B\)/g,"$1<img src='smileys/alien2.gif' alt='Alien' "+addStuff+">");
+			s = s.replace(/(:banghead:|:headbang:)/g,"<img src='smileys/banghead.gif' alt='Bandhead' "+addStuff+">");
+			s = s.replace(/:angel:/g,"<img src='smileys/ange.gif' alt='Angel' "+addStuff+">");
+			s = s.replace(/(^| )\._\./g,"$1<img src='smileys/blah.gif' alt='Blah' "+addStuff+">");
+			s = s.replace(/:devil:/g,"<img src='smileys/devil.gif' alt='Devil' "+addStuff+">");
+			s = s.replace(/(^| )&lt;_&lt;/g,"$1<img src='smileys/dry.gif' alt='Dry' "+addStuff+">");
+			s = s.replace(/:evillaugh:/g,"<img src='smileys/evillaugh.gif' alt='Evil Laugh' "+addStuff+">");
+			s = s.replace(/:crazy:/g,"<img src='smileys/fou.gif' alt='Crazy' "+addStuff+">");
+			s = s.replace(/:hyper:/g,"<img src='smileys/happy0075.gif' alt='Hyper' "+addStuff+">");
+			s = s.replace(/:love:/g,"<img src='smileys/love.gif' alt='Love' "+addStuff+">");
+ 			s = s.replace(/:mad:/g,"<img src='smileys/mad.gif' alt='Mad' "+addStuff+">");
+			s = s.replace(/:w00t:/g,"<img src='smileys/smiley_woot.gif' alt='w00t' "+addStuff+">");
+			s = s.replace(/(^| )\*\.\*/g,"$1<img src='smileys/psychedelicO_O.gif' alt='O.O.O' "+addStuff+">");
+			s = s.replace(/(^| )D:/g,"$1<img src='smileys/bigfrown.gif' alt='Big Frown' "+addStuff+">");
+			s = s.replace(/(^| )(XD|xD)/g,"$1<img src='smileys/XD.gif' alt='XD' "+addStuff+">");
+			s = s.replace(/(^| )x\.x/g,"$1<img src='smileys/X_X.gif' alt='x.x' "+addStuff+">");
+			s = s.replace(/:ninja:/g,"<img src='smileys/ninja.gif' alt='Ninja' "+addStuff+">");
+		}
+		return s;
+	}
+	function parseColors(colorStr){ //colors
+		if (!colorStr || colorStr == null || colorStr == undefined){
+			return;
+		}
+		colorStr = clickable_links(colorStr);
+		colorStr = parseSmileys(colorStr);
+		//lcount = 0;
+		//a = colorStr;
+		var arrayResults = [],
+			isBool = false,
+			numSpan = 0,
+			isItalic = false,
+			isUnderline = false,
+			s,
+			colorStrTemp = "1,0";
+		colorStr+="\x0f";
+		arrayResults = colorStr.split(RegExp("([\x02\x03\x0f\x16\x1d\x1f])"));
+		colorStr="";
+		for(var i=0;i<arrayResults.length;i++){
+			switch (arrayResults[i]){
+				case "\x03":
+					for(var j=0;j<numSpan;j++){
+						colorStr+="</span>";
+					}
+					numSpan=1;
+					i++;
+					colorStrTemp = arrayResults[i];
+					s=arrayResults[i].replace(/^([0-9]{1,2}),([0-9]{1,2})/g,"<span class=\"fg-$1\"><span class=\"bg-$2\">");
+					if(s==arrayResults[i]){
+						s=arrayResults[i].replace(/^([0-9]{1,2})/g,"<span class=\"fg-$1\">");
+					}else{
+						numSpan++;
+					}
+					colorStr+=s;
+					break;
+				case "\x02":
+					isBool = !isBool;
+					if(isBool){
+						colorStr+="<b>";
+					}else{
+						colorStr+="</b>";
+					}
+					break;
+				case "\x1d":
+					isItalic = !isItalic;
+					if(isItalic){
+						colorStr+="<i>";
+					}else{
+						colorStr+="</i>";
+					}
+					break;
+				case "\x16":
+					for(var j=0;j<numSpan;j++){
+						colorStr+="</span>";
+					}
+					numSpan=2;
+					var stemp;
+					s=colorStrTemp.replace(/^([0-9]{1,2}),([0-9]{1,2}).+/g,"<span class=\"fg-$2\"><span class=\"bg-$1\">");
+					stemp=colorStrTemp.replace(/^([0-9]{1,2}),([0-9]{1,2}).+/g,"$2,$1");
+					if(s==colorStrTemp){
+						s=colorStrTemp.replace(/^([0-9]{1,2}).+/g,"<span class=\"fg-0\"><span class=\"bg-$1\">");
+						stemp=colorStrTemp.replace(/^([0-9]{1,2}).+/g,"0,$1");
+					}
+					colorStrTemp = stemp;
+					colorStr+=s;
+					break;
+				case "\x1f":
+					isUnderline = !isUnderline;
+					if(isUnderline){
+						colorStr+="<u>";
+					}else{
+						colorStr+="</u>";
+					}
+					break;
+				case "\x0f":
+					if(isUnderline){
+						colorStr+="</u>";
+						isUnderline=false;
+					}
+					if(isItalic){
+						colorStr+="</i>";
+						isItalic=false;
+					}
+					if(isBool){
+						colorStr+="</b>"
+						isBool = false;
+					}
+					for(var j=0;j<numSpan;j++){
+						colorStr+="</span>";
+					}
+					numSpan=0;
+					break;
+				default:
+					colorStr+=arrayResults[i];
+			}
+		}
+		/*Strip codes*/
+		colorStr = colorStr.replace(/(\x03|\x02|\x1F|\x09|\x0F)/g,"");
+		return(colorStr);
+	}
+	function parseHighlight(text){ //highlight
+		if (text.toLowerCase().indexOf(userName.toLowerCase().substr(0,4)) >= 0){
+			style = "";
+			if(highRed){
+				style = style + "color:#C73232;";
+			}
+			if(highBold){
+				style = style + "font-weight:bold;";
+			}
+			return '<span class="highlight" style="' + style + '">' + text + "</span>";
+		}
+		return text;
+	}
+	function clickable_links(text){ //urls
+		if (!text || text == null || text == undefined){
+			return;
+		}
+		//text = text.replace(/http:\/\/www\.omnimaga\.org\//g,"h111://www.omnimaga.org/");
+		//text = text.replace(/http:\/\/ourl\.ca\//g,"h111://ourl.ca/");
+		//text = text.replace(/((h111:\/\/(www\.omnimaga\.org\/|ourl\.ca))[-a-zA-Z0-9@:;%_+.~#?&//=]+)/, '<a target="_top" href="$1">$1</a>');
+		text = text.replace(RegExp("(^|.)(((f|ht)(tp|tps):\/\/)[^\\s\x02\x03\x0f\x16\x1d\x1f]*)","g"),'$1<a target="_blank" href="$2">$2</a>');
+		text = text.replace(RegExp("(^|\\s)(www\.[^\\s\x02\x03\x0f\x16\x1d\x1f]*)","g"),'$1<a target="_blank" href="http://$2">$2</a>');
+		//text = text.replace(/h111/g,"http");
+		return text;
+	}
+	function clickable_names(name,isOnline){ //omnomirc names
+		if (isOnline == "1"){
+			return '<a target="_top" href="http://www.omnimaga.org/index.php?action=ezportal;sa=page;p=13&userSearch=' + name + '">' + colored_names(name) + '</a>';
+		}
+		return colored_names(name);
+	}
+	function colored_names(name){ //colored neames (duh)
+		if (!coloredNames){
+			return name;
+		}
+		if (!name || name == null || name == undefined){
+			return;
+		}
+		rcolors = Array(19, 20, 22, 24, 25, 26, 27, 28, 29);
+		sum = i = 0; 
+		while (name[i]){
+			sum += name.charCodeAt(i++);
+		}
+		sum %= 9;
+		return '<span class="uName-'+rcolors[sum]+'">'+name+'</span>';
+	}
+	function refreshThis(elementOnShow){
+		var msie = 'Microsoft Internet Explorer';
+		var tmp = 0;
+		if (navigator.appName == msie){
+			tmp = elementOnShow.offsetTop  +  'px';
+		}else{
+			tmp = elementOnShow.offsetTop;
+		}
+	}
+//******************************
+// End Parser                  *
+//******************************
+
+//******************************
+// Userlist Start              *
+//******************************
+	function addUser(user){
+		UserListArr.push(user);
+	}
+	function addUserJoin(user,online){
+		if(!hasLoaded) return;
+		var userp = base64.encode(user) + ":" + online;
+		UserListArr.push(userp);
+		parseUsers();
+	}
+	function parseUsers(){
+		if (!userListDiv || userListDiv == null){
+			userListDiv = document.getElementById("UserList");
+		}
+		userText = "";
+		i = 0;
+		UserListArr.sort(
+			function(a,b){
+				var al = base64.decode(a).toLowerCase(),
+					bl = base64.decode(b).toLowerCase();
+				return al==bl?(a==b?0:a<b?-1:1):al<bl?-1:1;
+			}
+		);
+		for (i=0;i<UserListArr.length;i++){
+			parts = UserListArr[i].split(":");
+			if (parts[1] == "0"){
+				userText = userText + "#" + base64.decode(parts[0]) + "<br/>";
+			}
+			if(parts[1] == "1"){
+				userText = userText + '<a target="_top" href="http://www.omnimaga.org/index.php?action=ezportal;sa=page;p=13&userSearch=' +base64.decode(parts[0]) + 
+				'"><img src="http://omnomirc.www.omnimaga.org/omni.png" alt="Omnimaga User" title="Omnimaga User" border=0 width=8 height=8 />' + base64.decode(parts[0]) + '</a><br/>';
+			}
+			if(parts[1] == "2"){
+				userText = userText + "!" + base64.decode(parts[0]) + "<br/>";
+			}
+		}
+		userText = userText + "<br/><br/>";
+		userListDiv.innerHTML = userText;
+	}
+	function removeUser(user){
+		if(!hasLoaded) return;
+		for (i in UserListArr){
+			parts = UserListArr[i].split(":");
+			if (base64.decode(parts[0]) == user){
+				UserListArr.splice(i,1);
+			}
+		}
+		parseUsers();
+	}
+	
+	
+//******************************
+// Userlist End                *
+//******************************
+//******************************
+// Load Start                  *
+//******************************
+	var load = window.load = function(){
+		cookieLoad();
+		lineHigh = getOption(6,"T") == "T";
+		doHigh = false;
+		coloredNames = getOption(3,"F") == "T";
+		highRed = getOption(2,"T") == "T";
+		highBold = getOption(1,"T") == "T";
+		enabled = getOption(5,"T") == "T";
+		notifications = getOption(7,"F") == "T";
+		highDing = getOption(8,"F") == "T";
+		showExChans = getOption(9,"F") == "T";
+		showTime = getOption(10,"F") == "T";
+		doStatusUpdates = getOption(11,"T") == "T";
+		showSmileys = getOption(12,"T") == "T";
+		hasLoaded = false;
+		if (!showSmileys){
+			document.getElementById('smileyMenuButton').src='smileys/smiley_grey.png';
+			document.getElementById('smileyMenuButton').style.cursor='default';
+		}
+		if (!enabled){
+			mboxCont.appendChild(messageBox);
+			messageBox.innerHTML = '<a href="#" onclick="toggleEnable();">OmnomIRC is disabled. Click here to enable.</a>';
+			return false;
+		}
+		doLineHigh=true;
+		var body= document.getElementsByTagName('body')[0];
+		var chanScr= document.createElement('script');
+		chanScr.type= 'text/javascript';
+		chanScr.src= 'Channels.php';
+		chanScr.onload= function(){
+			channelSelectorCallback();
+			readOldMessagesCookies();
+		};
+		body.appendChild(chanScr);
+		chanList = document.getElementById('chanList');
+		isBlurred();
+		if (userName == "Guest"){
+			var message = document.getElementById("message");
+			message.disabled = "true";
+			message.value = "You need to login if you want to chat!";
+		}
+	}
+	//window.onLoad = load();
+//******************************
+// Load End                    *
+//******************************
+
+//******************************
+// Links Start                 *
+//******************************
+	function toggleEnable(){
+		setOption(5,!(getOption(5,'T') == 'T')?'T':'F');
+		window.location.reload(true);
+	}
+//******************************
+// Links End                   *
+//******************************
+
+//******************************
+// Message Send Start          *
+//******************************
+
+	var sendAJAXMessage = window.sendAJAXMessage = function(name,signature,message,chan){ //'chan' kept for legacy purposes.
+		if (message[0] == "/"){
+			if (parseCommand(message.substr(1)))
+				return;
+		}
+		if (getChannelDe()[0] == "*"){
+			d = new Date();
+			str="0:pm:0:" + d.getTime()/1000 + ":" + base64.encode(name) + ":" + base64.encode(HTMLEncode(message)); //Print PMs locally.
+			//addLine(str);
+		}
+		var xmlhttp2=new XMLHttpRequest();
+		xmlhttp2.onreadyStateChange = function(){
+			console.log(xmlhttp2.readyState,xmlhttp2.responseText);
+		};
+		xmlhttp2.open(
+			"GET",
+			"message.php?nick=" + base64.encode(name) + "&signature="+base64.encode(signature)+"&message=" + base64.encode(message) +"&channel=" + getChannelEn(),
+			false
+		);
+		xmlhttp2.send(null);
+	}
+//******************************
+// Message Send End            *
+//******************************
+
+//******************************
+// Channel Selector Start      *
+//******************************
+	function channelSelectorCallback(){
+		messageBox.cellPadding = "0px";
+		messageBox.cellSpacing = "0px";
+		if (showExChans){
+			for (i in exChannels){
+				channels.push(exChannels[i]);
+			}
+		}
+		/*if (moreChans)
+			for(i in moreChans)
+				channels.push(base64.encode(moreChans[i]));*/
+		loadChannels(); //From cookies
+		drawChannels();
+		scrolledDown = true;
+		var body= document.getElementsByTagName('body')[0];
+		var script= document.createElement('script');
+		script.type= 'text/javascript';
+		script.src= 'Load.php?count=125&channel=' + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature) + "&time=" + (new Date).getTime();
+		script.onload= function(){
+			mBoxCont.appendChild(messageBox);
+			parseUsers();
+			startLoop();
+			mBoxCont.scrollTop = mBoxCont.scrollHeight;
+			hasLoaded = true;stopIndicator();
+		};
+		body.appendChild(script);
+	}
+	function changeChannel(){
+		//Empty out dirty holders
+		cancelRequest();
+		startIndicator();
+		mBoxCont.innerHTML = '';
+		messageBox = document.createElement("table");
+		messageBox.className='MessageBox';
+		messageBox.style.width="100%";
+		messageBox.style.height="100%";
+		messageBox.cellPadding = "0px";
+		messageBox.cellSpacing = "0px";
+		hasLoaded = false;
+		scrolledDown = true;
+		curLine = 0;
+		UserListArr = [];
+		userListDiv.innerHTML = "";
+		
+		drawChannels();	
+		var body= document.getElementsByTagName('body')[0];
+		var script= document.createElement('script');
+		script.type= 'text/javascript';
+		script.src= 'Load.php?count=125&channel=' + getChannelEn() + "&nick=" + base64.encode(userName) + "&signature=" + base64.encode(Signature) + "&time=" + (new Date).getTime();;
+		script.onload= function(){mBoxCont.appendChild(messageBox);parseUsers();startLoop();mBoxCont.scrollTop = mBoxCont.scrollHeight;hasLoaded = true;stopIndicator();};
+		body.appendChild(script);
+	}
+	function drawChannels(){
+		"use strict";
+		var table,
+			td,
+			span,
+			span2,
+			chanName,
+			docfrag = document.createDocumentFragment(),
+			chanList = document.getElementById("ChanList");
+		for (var i in channels){
+			// build elements/variables
+			table = document.createElement('table');
+			td = document.createElement('td');
+			span = document.createElement('span');
+			span2 = document.createElement('span');
+			table.className = 'chanList';
+			chanName = base64.decode(channels[i]);
+			// Set properties/events
+			td.id = chanName;
+			td.className = (getChannelIndex()==i)?"curchan" :"chan"
+			if (chanName.substr(0,1) != "#"){
+				span.onclick = (function(name){
+					return function(){
+						partChannel(name);
+					}
+				})(chanName);
+				span.onmouseover = function(){
+					this.style.color = '#C73232';
+					this.style.fontWeight = 'bolder'
+				};
+				span.onmouseout = (function(color){
+					return function(){
+						this.style.color = color;
+						this.style.fontWeight = 'normal';
+					}
+				})((getChannelIndex()==i)?'#FFF':'#22C');
+				span.innerHTML = 'x';
+				td.appendChild(span);
+			}
+			span2.onclick = (function(i){
+				return function(){
+					selectChannel(i);
+				};
+			})(i);
+			span2.innerHTML = chanName;
+			// Append to DOM
+			td.appendChild(span2);
+			table.appendChild(td);
+			docfrag.appendChild(table);
+		}
+		chanList.innerHTML = '';
+		chanList.appendChild(docfrag);
+	}
+	function selectChannel(index){
+		setOption(4,String.fromCharCode(index + 32),true);
+		changeChannel();
+		readOldMessagesCookies();
+	}
+	var getChannelEn = window.getChannelEn = function(){
+		return channels[getChannelIndex()];
+	}
+	function getChannelDe(){
+		return base64.decode(channels[getChannelIndex()]);
+	}
+	function getChannelIndex(){
+		var index = getOption(4,String.fromCharCode(32)).charCodeAt(0) - 32;
+		if (index > (channels.length - 1))
+			index = 0;
+		return index;
+	}
+//******************************
+// Channel Selector End        *
+//******************************
+
+//******************************
+// Tab Completion Start        *
+//******************************
+	function searchUser(start,startAt){
+		if(!startAt){
+			startAt = 0;
+		}
+		for (i=0;i<UserListArr.length;i++){
+			parts = UserListArr[i].split(":");
+			name = base64.decode(parts[0]).toLowerCase();
+			if (name.indexOf(start.toLowerCase()) == 0 && startAt-- <= 0){
+				return base64.decode(parts[0]);
+			}
+		}
+		return start;
+	}
+	
+//******************************
+// Tab Completion End          *
+//******************************
+
+//******************************
+// Commands Start              *
+//******************************
+	function setTopic(message){
+		document.getElementById('topic').innerHTML = message;
+	}
+	function sendInternalMessage(message){
+		d = new Date();
+		str="0:internal:0:" + parseInt(d.getTime()*1000) + ":" + base64.encode(message);
+		addLine(str);
+	}
+	function OmnomIRC_Error(message){
+		sendInternalMessage('<span style="color:#C73232;">'+message+"</span>");
+	}
+	function joinChannel(paramaters){
+			if (paramaters.substr(0,1) != "@" && paramaters.substr(0,1) != "#"){
+				paramaters = "@" + paramaters;
+			}
+			//Check if it already exists or not. If so, try to join it.
+			var count = 0;
+			for (i in channels){
+				if (base64.decode(channels[i]).toLowerCase() == paramaters.toLowerCase()){
+					selectChannel(count);
+					return;
+				}
+				count++;
+			}
+			//Channel not in existance.
+			if (paramaters.substr(0,1) == "#"){
+				sendInternalMessage('<span style="color:#C73232;"> Join Error: Cannot join new channels starting with #.</span>');
+				return;
+			}
+			//Valid chan, add to list.
+			channels.push(base64.encode(paramaters));
+			saveChannels();
+			selectChannel(channels.length-1);
+	}
+	function openPMWindow(paramaters){
+		if (paramaters.substr(0,1) == "@" && paramaters.substr(0,1) == "#"){
+			sendInternalMessage('<span style="color:#C73232;"> Query Error: Cannot query a channel. Use /join instead.</span>');
+		}
+		if (paramaters.substr(0,1) != "*"){
+			paramaters = "*" + paramaters;
+		}
+		for (i in channels){
+			if (base64.decode(channels[i]).toLowerCase() == paramaters.toLowerCase()){
+				return; //PM already opened, don't open another.
+			}
+		}
+		channels.push(base64.encode(paramaters));
+		saveChannels();
+		drawChannels();
+	}
+	function partChannel(paramaters){
+		if (paramaters == ""){
+			partChannel(getChannelDe());
+			return;
+		}
+		if (paramaters.substr(0,1) != "#"){
+			for (i in channels){
+				if (base64.decode(channels[i]) == paramaters){
+					if (getChannelDe() == paramaters){
+						channels.splice(i,1);
+						selectChannel(i-1);
+					}else{
+						channels.splice(i,1);
+						drawChannels();
+					}
+					saveChannels();
+					return;
+				}
+			}
+			if (paramaters.substr(0,1) != "@" && paramaters.substr(0,1) != "#"){
+				paramaters = "@" + paramaters;
+				partChannel(paramaters);
+			}else{
+				sendInternalMessage('<span style="color:#C73232;"> Part Error: I cannot part ' + paramaters + '. (You are not in it.)</span>');
+			}
+		}else{
+			sendInternalMessage('<span style="color:#C73232;"> Part Error: I cannot part ' + paramaters + '. (That is not an OmnomIRC channel.)</span>');
+		}
+	}
+	function parseCommand(message){
+		var command = message.split(" ")[0];
+		var paramaters = message.substr(command.length+1).toLowerCase();
+		switch(command){
+			case "j": case "join":
+				joinChannel(paramaters);
+				return true;
+			case "q": case "query":
+				openPMWindow(paramaters);
+				return true;
+			case "win": case "w": case "window":
+				if (parseInt(paramaters) > channels.length || parseInt(paramaters) <= 0)
+					sendInternalMessage('<span style="color:#C73232;"> Invalid window selection. Valid options: 1-'+channels.length+'</span>');
+				else
+					selectChannel(parseInt(paramaters)-1);
+			return true;
+			case "p": case "part":
+				partChannel(paramaters);
+				return true;
+			case "test":
+				sendInternalMessage(Signature);
+				return true;
+			default:
+				return false;
+		}
+	}
+//******************************
+// Commands End                *
+//******************************
+
+//******************************
+// Dynamic Channels Start      *
+//******************************
+
+	function loadChannels(){
+		if (document.cookie.indexOf("OmnomChannels") >= 0){
+			var moreChans = document.cookie.split(";")[0].replace(/^.*OmnomChannels=(.+?)|.*/, "\$1").split("%");
+			for (i in moreChans){
+				if (moreChans[i][0] != "#" && moreChans[i] != ""){
+					if (moreChans[i][0] == "^"){
+						moreChans[i][0] = "#";
+					}
+					channels.push(moreChans[i]);
+				}
+			}
+		}
+	}
+
+	function saveChannels(){
+		var chanList = "";
+		for (i in channels){
+			if (base64.decode(channels[i]).substr(0,1) != "#"){
+				chanList = chanList + channels[i] + "%";
+			}
+		}
+		chanList = chanList.substr(0,chanList.length-1);
+		document.cookie = "OmnomChannels=" + chanList + ";expires=Sat, 20 Nov 2286 17:46:39 GMT;";
+	}
+
+//******************************
+// Dynamic Channels End        *
+//******************************
+
+//******************************
+// Focus Handler Start         *
+//******************************
+	function isBlurred() {
+		if(focusHandlerRegistered == undefined){
+			focusHandlerRegistered = false;
+		}
+		if(!focusHandlerRegistered){
+			registerFocusHandler();
+		}
+		if(parent != undefined){
+			return parent.window.bIsBlurred;
+		}else{
+			return bIsBlurred;
+		}
+	}
+	function registerFocusHandler() {
+		focusHandlerRegistered = true;
+		if (parent != undefined){//Child(iframe)
+			parent.window.bIsBlurred = false;
+			parent.window.onblur = function(){
+				parent.window.bIsBlurred = true;
+				return true;
+			};
+			parent.window.onfocus= function(){
+				parent.window.bIsBlurred=false;
+				resize();
+				return true;
+			};
+		}else{ //Not a child
+			window.onblur = function(){ bIsBlurred=true;if(console.log)console.log("Blur");return true; }
+			window.onfocus= function(){ bIsBlurred=false;resize();if(console.log)console.log("Focus");return true;}
+		}
+	}
+//******************************
+// Focus Handler End           *
+//******************************
+
+//******************************
+// Status Bar Updater Start    *
+//******************************
+	function startStatusBarUpdate(){
+		if (!doStatusUpdates) return;
+		if (!statusStarted)
+			setInterval(doStatusBarUpdate,500);
+		statusStarted = true;
+	}
+
+	function doStatusBarUpdate()
+	{
+		window.status=statusTxt;
+		if (parent)
+			parent.window.status=statusTxt;
+	}
+
+	function changeStatusBarText(msg){
+		statusTxt = msg;
+		if (!statusStarted){
+			startStatusBarUpdate();
+		}
+	}
+//******************************
+// Status Bar Updater End      *
+//******************************
+
+//******************************
+// HTML Tools Start            *
+//******************************
+	function HTMLEncode(str){
+		var div = document.createElement('div'),
+			text = document.createTextNode(str);
+		div.appendChild(text);
+		return div.innerHTML;
+	}
+	function StripHTML(str){
+		var tmp = document.createElement("div");
+		tmp.innerHTML = str;
+		return tmp.textContent||tmp.innerText;
+	}
+	String.prototype.trim = function(){
+		return this.replace(/^\s+|\s+$/g, "");
+	};
+//******************************
+// HTML Tools End              *
+//******************************
+})(window);

+ 178 - 184
omnomirc_www/index.php

@@ -1,185 +1,179 @@
-<?php
-if (strpos($_SERVER['HTTP_USER_AGENT'],"textmode;")===false) {?>
-<!--
-/*
-    OmnomIRC COPYRIGHT 2010,2011 Netham45
-
-    This file is part of OmnomIRC.
-
-    OmnomIRC is free software: you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation, either version 3 of the License, or
-    (at your option) any later version.
-
-    OmnomIRC is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with OmnomIRC.  If not, see <http://www.gnu.org/licenses/>.
-*/
-!-->
-<html>
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<title>OmnomIRC V2</title>
-<link rel="stylesheet" type="text/css" href="style.css" />
-<script src="config.js"></script>
-<script src="btoa.js"></script>
-<script type="text/javascript">
-	document.domain=HOSTNAME;
-	
-	function AJAXSend() {
-		Message = document.getElementById("message").value;
-		sendAJAXMessage(userName,Signature,Message,"#Omnimaga");
-		oldMessages.push(Message);
-		document.getElementById("message").value = "";
-		document.getElementById("message").focus();
-		if (oldMessages.length>20)
-			oldMessages.shift();
-		messageCounter = oldMessages.length;
-		setCookie("oldMessages-"+getChannelEn(),oldMessages.join("\n"),30);
-	}
-	
-	function resize()
-	{
-		var offset = 42;
-		if ("\v" != "v")
-		{
-			winbg2=document.getElementById("windowbg2");
-			msg = document.getElementById("message");
-			send = document.getElementById("send");
-			newHeight = window.innerHeight - (msg.clientHeight + 14) + "px";
-			winbg2.style.height = newHeight;
-
-			messageBox.style.height = winbg2.clientHeight - offset + "px";
-			mBoxCont.style.height = winbg2.clientHeight - offset + "px";
-			mBoxCont.scrollTop = mBoxCont.scrollHeight;
-			msg.style.width = mBoxCont.clientWidth - send.clientWidth - "39" + "px";
-			msg.style.left = "0px";
-		}
-		else
-		{
-			page = document.getElementsByTagName("html")[0];
-			winbg2=document.getElementById("windowbg2");
-			msg = document.getElementById("message");
-			send = document.getElementById("send");
-			winbg2.style.height = page.clientHeight - msg.clientHeight - offset + "px";
-			messageBox.style.height = winbg2.clientHeight - offset + "px";
-			mBoxCont.style.height = winbg2.clientHeight - offset + "px";
-			mBoxCont.scrollTop = mBoxCont.scrollHeight;
-			msg.style.width = mBoxCont.clientWidth - send.clientWidth - "39" + "px";
-			msg.style.left = "0px";
-		}
-	}
-	window.onresize = resize;
-</script>
-</head>
-<body style="overflow:hidden;margin:0px;padding:0px;*height:100%">
-<div class="windowbg2" id="windowbg2" style="width:100%;height:100%;overflow:hidden;">
-<div id="Channels" style="width:90%;overflow:hidden;position:absolute;overflow-x:hidden;overflow-y:hidden;">
-<div id="ChanListButtons" style="width:98%;overflow:hidden;display:inline;position:relative;left:0px;top:4px;">
-	<span style="font-size:10pt;" class="arrowButton" onmousedown="menul=setInterval('document.getElementById(\'ChanListCont\').scrollLeft -= 9',50)" onmouseup="clearInterval(menul)" onmouseout="clearInterval(menul)">&#9668;</span>
-	<span style="font-size:10pt;" class="arrowButton" onmousedown="menur=setInterval('document.getElementById(\'ChanListCont\').scrollLeft += 9',50)" onmouseup="clearInterval(menur)" onmouseout="clearInterval(menur)">&#9658;</span>
-</div>
-
-<div id="ChanListCont" style="width:96%;overflow-x:hidden;display:block;position:relative;left:23px;top:-16px;">
-	<div id="ChanList" style="width:500%"></div>
-</div>
-</div>
-<div id="topicbox" style="width:90%;overflow:hidden;position:absolute;overflow-x:hidden;overflow-y:hidden;left:0px;top:26px;margin:0;padding:0;">
-	<div id="TopicButtons" style="width:98%;overflow:hidden;display:inline;position:relative;left:0px;top:-2px;margin:0;padding:0;">
-		<span style="font-size:8pt;" class="arrowButton" onmousedown="menul=setInterval('document.getElementById(\'topicCont\').scrollLeft -= 9',50)" onmouseup="clearInterval(menul)" onmouseout="clearInterval(menul)">&#9668;</span>
-		<span style="font-size:8pt;" class="arrowButton" onmousedown="menur=setInterval('document.getElementById(\'topicCont\').scrollLeft += 9',50)" onmouseup="clearInterval(menur)" onmouseout="clearInterval(menur)">&#9658;</span>
-	</div>
-	<div id="topicCont" style="width:96%;overflow-x:hidden;display:block;position:relative;left:23px;top:-16px;margin:0;padding:0;">
-		<div id="topic" style="white-space:nowrap;"></div>
-	</div>
-</div>
-<br/>
-<br/>
-<br/>
-<div id="mboxCont" style="width:90%;height:100%;overflow:hidden;position:relative;overflow-x:hidden;overflow-y:hidden;"></div>
-	<span class="arrowButtonHoriz3"><div style="font-size:12pt;width:12%;height:9pt;top:0;left:90%;position:absolute;font-weight:bolder;margin-top:10pt;margin-left:-10pt;" class="arrowButtonHoriz2">&#9650;</div>
-	<div style="font-size:12pt;width:12%;height:9pt;top:0;left:90%;position:absolute;margin-top:10pt;margin-left:-10pt;" onmousedown="downIntM = setInterval('document.getElementById(\'mboxCont\').scrollTop -= 9;scrolledDown=false;',50);" onmouseout="clearInterval(downIntM);" onmouseup="clearInterval(downIntM);"></div></span>
-	<span class="arrowButtonHoriz3"><div style="font-size:12pt;width:12%;height:9pt;top:100%;left:90%;position:absolute;margin-top:-10pt;margin-left:-10pt;font-weight:bolder;" class="arrowButtonHoriz2">&#9660;</div>
-	<div style="font-size:12pt;width:12%;height:9pt;top:100%;left:90%;position:absolute;margin-top:-10pt;margin-left:-10pt;" onmousedown="upIntM = setInterval('document.getElementById(\'mboxCont\').scrollTop += 9;if (mBoxCont.scrollTop+mBoxCont.clientHeight==mBoxCont.scrollHeight)scrolledDown=true;',50);" onmouseout="clearInterval(upIntM);" onmouseup="clearInterval(upIntM);"></div></span>
-
-<div id="UserListContainer" style="width:10%;height:98%;left:90%;top:0;position:absolute;color:#222;border-style:dashed;border-width:1px;border-right-color:#000;overflow:hidden;">
-	<span style="left:10%;position:relative;font-size:6pt;"><!--<a href="http://omnom.omnimaga.org/irc/efnet/?channel=omnimaga#bottom" target="_TOP">Logs</a><br/>--><a href="http://www.omnimaga.org/OmnomIRC_Full.html" target="_TOP">Full View</a><br/><a id="toggle" href="#" onclick="toggleEnable();">Toggle</a><br/><a href="Options.html" accesskey="o" alt="OmnomIRC Options" title="OmnomIRC Options">Options</a></span>
-	<div id="UserList" style="position:relative;left:10%;height:88%;top:1%;width:120%;font-family:verdana,sans-serif;overflow-x:hidden;overflow-y:scroll;">
-	</div>
-	<span class="arrowButtonHoriz3"><div style="width:12%;height:9pt;top:0pt;left:78%;position:absolute;font-weight:bolder;margin-top:10pt;" class="arrowButtonHoriz2">&#9650;</div>
-	<div style="width:12%;height:9pt;top:0pt;left:78%;position:absolute;margin-top:10pt;" onmousedown="downInt = setInterval('userListDiv.scrollTop -= 9',50);" onmouseout="clearInterval(downInt);" onmouseup="clearInterval(downInt);"></div></span>
-	<span class="arrowButtonHoriz3"><div style="width:12%;height:9pt;top:100%;left:78%;position:absolute;margin-top:-10pt;font-weight:bolder;" class="arrowButtonHoriz2">&#9660;</div>
-	<div style="width:12%;height:9pt;top:100%;left:78%;position:absolute;margin-top:-10pt;" onmousedown="upInt = setInterval('userListDiv.scrollTop += 9',50);" onmouseout="clearInterval(upInt);" onmouseup="clearInterval(upInt);"></div></span>
-	</div>
-</div>
-</div><img id="smileyMenuButton" src="smileys/smiley.gif" style="cursor:pointer;margin-left:2px;margin-right:2px;" onclick="if(showSmileys){if(document.getElementById('smileyselect').style.display==''){document.getElementById('smileyselect').style.display='none';this.src='smileys/smiley.gif';}else{document.getElementById('smileyselect').style.display='';this.src='smileys/tongue.gif';}}"><form style="Display:inline;" name="irc" action="javascript:void(0)" onSubmit="AJAXSend()"><input autocomplete="off" accesskey="i" type="text" name="message" id="message" size="128" maxlength="256" alt="OmnomIRC" title="OmnomIRC"/><input type="submit" value="Send" id="send" /></form>
-
-<div id="smileyselect" style="display:none;">
-	<img src="smileys/smiley.gif" alt="Smiley" title="Smiley" onclick="replaceText(' :)', document.forms.irc.message); return false;">
-	<img src="smileys/wink.gif" alt="Wink" title="Wink" onclick="replaceText(' ;)', document.forms.irc.message); return false;">
-	<img src="smileys/cheesy.gif" alt="Cheesy" title="Cheesy" onclick="replaceText(' :D', document.forms.irc.message); return false;">
-	<img src="smileys/grin.gif" alt="Grin" title="Grin" onclick="replaceText(' ;D', document.forms.irc.message); return false;">
-	<img src="smileys/angry.gif" alt="Angry" title="Angry" onclick="replaceText(' &gt;:(', document.forms.irc.message); return false;">
-	<img src="smileys/sad.gif" alt="Sad" title="Sad" onclick="replaceText(' :(', document.forms.irc.message); return false;">
-	<img src="smileys/shocked.gif" alt="Shocked" title="Shocked" onclick="replaceText(' :o', document.forms.irc.message); return false;">
-	<img src="smileys/cool.gif" alt="Cool" title="Cool" onclick="replaceText(' 8)', document.forms.irc.message); return false;">
-	<img src="smileys/huh.gif" alt="Huh?" title="Huh?" onclick="replaceText(' ???', document.forms.irc.message); return false;">
-	<img src="smileys/rolleyes.gif" alt="Roll Eyes" title="Roll Eyes" onclick="replaceText(' ::)', document.forms.irc.message); return false;">
-	<img src="smileys/tongue.gif" alt="Tongue" title="Tongue" onclick="replaceText(' :P', document.forms.irc.message); return false;">
-	<img src="smileys/embarrassed.gif" alt="Embarrassed" title="Embarrassed" onclick="replaceText(' :-[', document.forms.irc.message); return false;">
-	<img src="smileys/lipsrsealed.gif" alt="Lips Sealed" title="Lips Sealed" onclick="replaceText(' :-X', document.forms.irc.message); return false;">
-	<img src="smileys/undecided.gif" alt="Undecided" title="Undecided" onclick="replaceText(' :-\\', document.forms.irc.message); return false;">
-	<img src="smileys/kiss.gif" alt="Kiss" title="Kiss" onclick="replaceText(' :-*', document.forms.irc.message); return false;">
-	<img src="smileys/cry.gif" alt="Cry" title="Cry" onclick="replaceText(' :\'(', document.forms.irc.message); return false;">
-	<img src="smileys/thumbsupsmiley.gif" alt="Good job" title="Good job" onclick="replaceText(' :thumbsup:', document.forms.irc.message); return false;">
-	<img src="smileys/evil.gif" alt="Evil" title="Evil" onclick="replaceText(' &gt;:D', document.forms.irc.message); return false;">
-	<img src="smileys/shocked2.gif" alt="shocked" title="shocked" onclick="replaceText(' O.O', document.forms.irc.message); return false;">
-	<img src="smileys/azn.gif" alt="Azn" title="Azn" onclick="replaceText(' ^-^', document.forms.irc.message); return false;">
-	<img src="smileys/alien2.gif" alt="Alien" title="Alien" onclick="replaceText(' &gt;B)', document.forms.irc.message); return false;">
-	<img src="smileys/banghead.gif" alt="Frustrated" title="Frustrated" onclick="replaceText(' :banghead:', document.forms.irc.message); return false;">
-	<img src="smileys/ange.gif" alt="Angel" title="Angel" onclick="replaceText(' :angel:', document.forms.irc.message); return false;">
-	<img src="smileys/blah.gif" alt="Blah" title="Blah" onclick="replaceText(' ._.', document.forms.irc.message); return false;">
-	<img src="smileys/devil.gif" alt="Devil" title="Devil" onclick="replaceText(' :devil:', document.forms.irc.message); return false;">
-	<img src="smileys/dry.gif" alt="&lt;_&lt;" title="&lt;_&lt;" onclick="replaceText(' &lt;_&lt;', document.forms.irc.message); return false;">
-	<img src="smileys/evillaugh.gif" alt="Evil Laugh" title="Evil Laugh" onclick="replaceText(' :evillaugh:', document.forms.irc.message); return false;">
-	<img src="smileys/fou.gif" alt="Crazy" title="Crazy" onclick="replaceText(' :crazy:', document.forms.irc.message); return false;">
-	<img src="smileys/happy0075.gif" alt="You just lost the game" title="You just lost the game" onclick="replaceText(' :hyper:', document.forms.irc.message); return false;">
-	<img src="smileys/love.gif" alt="Love" title="Love" onclick="replaceText(' :love:', document.forms.irc.message); return false;">
-	<img src="smileys/mad.gif" alt="Mad" title="Mad" onclick="replaceText(' :mad:', document.forms.irc.message); return false;">
-	<img src="smileys/smiley_woot.gif" alt="w00t" title="w00t" onclick="replaceText(' :w00t:', document.forms.irc.message); return false;">
-	<img src="smileys/psychedelicO_O.gif" alt="I must have had too much radiation for breakfast..." title="I must have had too much radiation for breakfast..." onclick="replaceText(' *.*', document.forms.irc.message); return false;">
-	<img src="smileys/bigfrown.gif" alt="Big frown" title="Big frown" onclick="replaceText(' D:', document.forms.irc.message); return false;">
-	<img src="smileys/XD.gif" alt="Big smile" title="Big smile" onclick="replaceText(' XD', document.forms.irc.message); return false;">
-	<img src="smileys/X_X.gif" alt="x.x" title="x.x" onclick="replaceText(' x.x', document.forms.irc.message); return false;">
-	<img src="smileys/ninja.gif" alt="Get Ninja'd" title="Get Ninja'd" onclick="replaceText(' :ninja:', document.forms.irc.message); return false;">
-</div>
-<div id="indicator" style="position:absolute;z-index:10;margin:0;padding:0;top:0;right:0;"></div>
-
-<script src="Omnom_Options.js"></script>
-<script src="Omnom_Parser.js"></script>
-<script src="Omnom_Tab.js"></script>
-<script src="Omnom_Misc.js"></script>
-
-<script type="text/javascript">
-	startIndicator();
-	
-	function signCallback(sig,nick) {
-		Signature = sig;
-		userName = nick;
-		load();
-	}
-	resize();
-</script>
-<script src="http://www.omnimaga.org/checkLogin.php"></script>
-<audio id="ding" src="beep.wav" hidden></audio>
-</body>
-</html>
-<?php
-} else {
-	header('Location: http://www.omnimaga.org/checkLogin.php?textmode');
-}
+<?php
+if(strpos($_SERVER['HTTP_USER_AGENT'],"textmode;")===false){?>
+<!--
+/*
+    OmnomIRC COPYRIGHT 2010,2011 Netham45
+
+    This file is part of OmnomIRC.
+
+    OmnomIRC is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    OmnomIRC is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with OmnomIRC.  If not, see <http://www.gnu.org/licenses/>.
+*/
+!-->
+<html>
+	<head>
+		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+		<title>OmnomIRC V2</title>
+		<link rel="stylesheet" type="text/css" href="style.css" />
+		<script src="config.js"></script>
+		<script src="btoa.js"></script>
+		<script type="text/javascript">
+			document.domain=HOSTNAME;
+			function AJAXSend() {
+				Message = document.getElementById("message").value;
+				sendAJAXMessage(userName,Signature,Message,"#Omnimaga");
+				oldMessages.push(Message);
+				document.getElementById("message").value = "";
+				document.getElementById("message").focus();
+				if (oldMessages.length>20)
+					oldMessages.shift();
+				messageCounter = oldMessages.length;
+				setCookie("oldMessages-"+getChannelEn(),oldMessages.join("\n"),30);
+			}
+			
+			function resize(){
+				var offset = 42;
+				if ("\v" != "v"){
+					winbg2=document.getElementById("windowbg2");
+					msg = document.getElementById("message");
+					send = document.getElementById("send");
+					newHeight = window.innerHeight - (msg.clientHeight + 14) + "px";
+					winbg2.style.height = newHeight;
+
+					messageBox.style.height = winbg2.clientHeight - offset + "px";
+					mBoxCont.style.height = winbg2.clientHeight - offset + "px";
+					mBoxCont.scrollTop = mBoxCont.scrollHeight;
+					msg.style.width = mBoxCont.clientWidth - send.clientWidth - "39" + "px";
+					msg.style.left = "0px";
+				}else{
+					page = document.getElementsByTagName("html")[0];
+					winbg2=document.getElementById("windowbg2");
+					msg = document.getElementById("message");
+					send = document.getElementById("send");
+					winbg2.style.height = page.clientHeight - msg.clientHeight - offset + "px";
+					messageBox.style.height = winbg2.clientHeight - offset + "px";
+					mBoxCont.style.height = winbg2.clientHeight - offset + "px";
+					mBoxCont.scrollTop = mBoxCont.scrollHeight;
+					msg.style.width = mBoxCont.clientWidth - send.clientWidth - "39" + "px";
+					msg.style.left = "0px";
+				}
+			}
+			window.onresize = resize;
+		</script>
+	</head>
+	<body style="overflow:hidden;margin:0px;padding:0px;*height:100%">
+		<div class="windowbg2" id="windowbg2" style="width:100%;height:100%;overflow:hidden;">
+		<div id="Channels" style="width:90%;overflow:hidden;position:absolute;overflow-x:hidden;overflow-y:hidden;">
+		<div id="ChanListButtons" style="width:98%;overflow:hidden;display:inline;position:relative;left:0px;top:4px;">
+			<span style="font-size:10pt;" class="arrowButton" onmousedown="menul=setInterval('document.getElementById(\'ChanListCont\').scrollLeft -= 9',50)" onmouseup="clearInterval(menul)" onmouseout="clearInterval(menul)">&#9668;</span>
+			<span style="font-size:10pt;" class="arrowButton" onmousedown="menur=setInterval('document.getElementById(\'ChanListCont\').scrollLeft += 9',50)" onmouseup="clearInterval(menur)" onmouseout="clearInterval(menur)">&#9658;</span>
+		</div>
+
+		<div id="ChanListCont" style="width:96%;overflow-x:hidden;display:block;position:relative;left:23px;top:-16px;">
+			<div id="ChanList" style="width:500%"></div>
+		</div>
+		</div>
+		<div id="topicbox" style="width:90%;overflow:hidden;position:absolute;overflow-x:hidden;overflow-y:hidden;left:0px;top:26px;margin:0;padding:0;">
+			<div id="TopicButtons" style="width:98%;overflow:hidden;display:inline;position:relative;left:0px;top:-2px;margin:0;padding:0;">
+				<span style="font-size:8pt;" class="arrowButton" onmousedown="menul=setInterval('document.getElementById(\'topicCont\').scrollLeft -= 9',50)" onmouseup="clearInterval(menul)" onmouseout="clearInterval(menul)">&#9668;</span>
+				<span style="font-size:8pt;" class="arrowButton" onmousedown="menur=setInterval('document.getElementById(\'topicCont\').scrollLeft += 9',50)" onmouseup="clearInterval(menur)" onmouseout="clearInterval(menur)">&#9658;</span>
+			</div>
+			<div id="topicCont" style="width:96%;overflow-x:hidden;display:block;position:relative;left:23px;top:-16px;margin:0;padding:0;">
+				<div id="topic" style="white-space:nowrap;"></div>
+			</div>
+		</div>
+		<br/>
+		<br/>
+		<br/>
+		<div id="mboxCont" style="width:90%;height:100%;overflow:hidden;position:relative;overflow-x:hidden;overflow-y:hidden;"></div>
+			<span class="arrowButtonHoriz3"><div style="font-size:12pt;width:12%;height:9pt;top:0;left:90%;position:absolute;font-weight:bolder;margin-top:10pt;margin-left:-10pt;" class="arrowButtonHoriz2">&#9650;</div>
+			<div style="font-size:12pt;width:12%;height:9pt;top:0;left:90%;position:absolute;margin-top:10pt;margin-left:-10pt;" onmousedown="downIntM = setInterval('document.getElementById(\'mboxCont\').scrollTop -= 9;scrolledDown=false;',50);" onmouseout="clearInterval(downIntM);" onmouseup="clearInterval(downIntM);"></div></span>
+			<span class="arrowButtonHoriz3"><div style="font-size:12pt;width:12%;height:9pt;top:100%;left:90%;position:absolute;margin-top:-10pt;margin-left:-10pt;font-weight:bolder;" class="arrowButtonHoriz2">&#9660;</div>
+			<div style="font-size:12pt;width:12%;height:9pt;top:100%;left:90%;position:absolute;margin-top:-10pt;margin-left:-10pt;" onmousedown="upIntM = setInterval('document.getElementById(\'mboxCont\').scrollTop += 9;if (mBoxCont.scrollTop+mBoxCont.clientHeight==mBoxCont.scrollHeight)scrolledDown=true;',50);" onmouseout="clearInterval(upIntM);" onmouseup="clearInterval(upIntM);"></div></span>
+
+		<div id="UserListContainer" style="width:10%;height:98%;left:90%;top:0;position:absolute;color:#222;border-style:dashed;border-width:1px;border-right-color:#000;overflow:hidden;">
+			<span style="left:10%;position:relative;font-size:6pt;"><!--<a href="http://omnom.omnimaga.org/irc/efnet/?channel=omnimaga#bottom" target="_TOP">Logs</a><br/>--><a href="http://www.omnimaga.org/OmnomIRC_Full.html" target="_TOP">Full View</a><br/><a id="toggle" href="#" onclick="toggleEnable();">Toggle</a><br/><a href="Options.html" accesskey="o" alt="OmnomIRC Options" title="OmnomIRC Options">Options</a></span>
+			<div id="UserList" style="position:relative;left:10%;height:88%;top:1%;width:120%;font-family:verdana,sans-serif;overflow-x:hidden;overflow-y:scroll;">
+			</div>
+			<span class="arrowButtonHoriz3"><div style="width:12%;height:9pt;top:0pt;left:78%;position:absolute;font-weight:bolder;margin-top:10pt;" class="arrowButtonHoriz2">&#9650;</div>
+			<div style="width:12%;height:9pt;top:0pt;left:78%;position:absolute;margin-top:10pt;" onmousedown="downInt = setInterval('userListDiv.scrollTop -= 9',50);" onmouseout="clearInterval(downInt);" onmouseup="clearInterval(downInt);"></div></span>
+			<span class="arrowButtonHoriz3"><div style="width:12%;height:9pt;top:100%;left:78%;position:absolute;margin-top:-10pt;font-weight:bolder;" class="arrowButtonHoriz2">&#9660;</div>
+			<div style="width:12%;height:9pt;top:100%;left:78%;position:absolute;margin-top:-10pt;" onmousedown="upInt = setInterval('userListDiv.scrollTop += 9',50);" onmouseout="clearInterval(upInt);" onmouseup="clearInterval(upInt);"></div></span>
+			</div>
+		</div>
+		</div><img id="smileyMenuButton" src="smileys/smiley.gif" style="cursor:pointer;margin-left:2px;margin-right:2px;" onclick="if(showSmileys){if(document.getElementById('smileyselect').style.display==''){document.getElementById('smileyselect').style.display='none';this.src='smileys/smiley.gif';}else{document.getElementById('smileyselect').style.display='';this.src='smileys/tongue.gif';}}"><form style="Display:inline;" name="irc" action="javascript:void(0)" onSubmit="AJAXSend()"><input autocomplete="off" accesskey="i" type="text" name="message" id="message" size="128" maxlength="256" alt="OmnomIRC" title="OmnomIRC"/><input type="submit" value="Send" id="send" /></form>
+
+		<div id="smileyselect" style="display:none;">
+			<img src="smileys/smiley.gif" alt="Smiley" title="Smiley" onclick="replaceText(' :)', document.forms.irc.message); return false;">
+			<img src="smileys/wink.gif" alt="Wink" title="Wink" onclick="replaceText(' ;)', document.forms.irc.message); return false;">
+			<img src="smileys/cheesy.gif" alt="Cheesy" title="Cheesy" onclick="replaceText(' :D', document.forms.irc.message); return false;">
+			<img src="smileys/grin.gif" alt="Grin" title="Grin" onclick="replaceText(' ;D', document.forms.irc.message); return false;">
+			<img src="smileys/angry.gif" alt="Angry" title="Angry" onclick="replaceText(' &gt;:(', document.forms.irc.message); return false;">
+			<img src="smileys/sad.gif" alt="Sad" title="Sad" onclick="replaceText(' :(', document.forms.irc.message); return false;">
+			<img src="smileys/shocked.gif" alt="Shocked" title="Shocked" onclick="replaceText(' :o', document.forms.irc.message); return false;">
+			<img src="smileys/cool.gif" alt="Cool" title="Cool" onclick="replaceText(' 8)', document.forms.irc.message); return false;">
+			<img src="smileys/huh.gif" alt="Huh?" title="Huh?" onclick="replaceText(' ???', document.forms.irc.message); return false;">
+			<img src="smileys/rolleyes.gif" alt="Roll Eyes" title="Roll Eyes" onclick="replaceText(' ::)', document.forms.irc.message); return false;">
+			<img src="smileys/tongue.gif" alt="Tongue" title="Tongue" onclick="replaceText(' :P', document.forms.irc.message); return false;">
+			<img src="smileys/embarrassed.gif" alt="Embarrassed" title="Embarrassed" onclick="replaceText(' :-[', document.forms.irc.message); return false;">
+			<img src="smileys/lipsrsealed.gif" alt="Lips Sealed" title="Lips Sealed" onclick="replaceText(' :-X', document.forms.irc.message); return false;">
+			<img src="smileys/undecided.gif" alt="Undecided" title="Undecided" onclick="replaceText(' :-\\', document.forms.irc.message); return false;">
+			<img src="smileys/kiss.gif" alt="Kiss" title="Kiss" onclick="replaceText(' :-*', document.forms.irc.message); return false;">
+			<img src="smileys/cry.gif" alt="Cry" title="Cry" onclick="replaceText(' :\'(', document.forms.irc.message); return false;">
+			<img src="smileys/thumbsupsmiley.gif" alt="Good job" title="Good job" onclick="replaceText(' :thumbsup:', document.forms.irc.message); return false;">
+			<img src="smileys/evil.gif" alt="Evil" title="Evil" onclick="replaceText(' &gt;:D', document.forms.irc.message); return false;">
+			<img src="smileys/shocked2.gif" alt="shocked" title="shocked" onclick="replaceText(' O.O', document.forms.irc.message); return false;">
+			<img src="smileys/azn.gif" alt="Azn" title="Azn" onclick="replaceText(' ^-^', document.forms.irc.message); return false;">
+			<img src="smileys/alien2.gif" alt="Alien" title="Alien" onclick="replaceText(' &gt;B)', document.forms.irc.message); return false;">
+			<img src="smileys/banghead.gif" alt="Frustrated" title="Frustrated" onclick="replaceText(' :banghead:', document.forms.irc.message); return false;">
+			<img src="smileys/ange.gif" alt="Angel" title="Angel" onclick="replaceText(' :angel:', document.forms.irc.message); return false;">
+			<img src="smileys/blah.gif" alt="Blah" title="Blah" onclick="replaceText(' ._.', document.forms.irc.message); return false;">
+			<img src="smileys/devil.gif" alt="Devil" title="Devil" onclick="replaceText(' :devil:', document.forms.irc.message); return false;">
+			<img src="smileys/dry.gif" alt="&lt;_&lt;" title="&lt;_&lt;" onclick="replaceText(' &lt;_&lt;', document.forms.irc.message); return false;">
+			<img src="smileys/evillaugh.gif" alt="Evil Laugh" title="Evil Laugh" onclick="replaceText(' :evillaugh:', document.forms.irc.message); return false;">
+			<img src="smileys/fou.gif" alt="Crazy" title="Crazy" onclick="replaceText(' :crazy:', document.forms.irc.message); return false;">
+			<img src="smileys/happy0075.gif" alt="You just lost the game" title="You just lost the game" onclick="replaceText(' :hyper:', document.forms.irc.message); return false;">
+			<img src="smileys/love.gif" alt="Love" title="Love" onclick="replaceText(' :love:', document.forms.irc.message); return false;">
+			<img src="smileys/mad.gif" alt="Mad" title="Mad" onclick="replaceText(' :mad:', document.forms.irc.message); return false;">
+			<img src="smileys/smiley_woot.gif" alt="w00t" title="w00t" onclick="replaceText(' :w00t:', document.forms.irc.message); return false;">
+			<img src="smileys/psychedelicO_O.gif" alt="I must have had too much radiation for breakfast..." title="I must have had too much radiation for breakfast..." onclick="replaceText(' *.*', document.forms.irc.message); return false;">
+			<img src="smileys/bigfrown.gif" alt="Big frown" title="Big frown" onclick="replaceText(' D:', document.forms.irc.message); return false;">
+			<img src="smileys/XD.gif" alt="Big smile" title="Big smile" onclick="replaceText(' XD', document.forms.irc.message); return false;">
+			<img src="smileys/X_X.gif" alt="x.x" title="x.x" onclick="replaceText(' x.x', document.forms.irc.message); return false;">
+			<img src="smileys/ninja.gif" alt="Get Ninja'd" title="Get Ninja'd" onclick="replaceText(' :ninja:', document.forms.irc.message); return false;">
+		</div>
+		<div id="indicator" style="position:absolute;z-index:10;margin:0;padding:0;top:0;right:0;"></div>
+
+		<script src="Omnom_Options.js"></script>
+		<script src="Omnom_Parser.js"></script>
+		<script src="Omnom_Tab.js"></script>
+		<script src="Omnom_Misc.js"></script>
+
+		<script type="text/javascript">
+			startIndicator();
+			function signCallback(sig,nick) {
+				Signature = sig;
+				userName = nick;
+				load();
+			}
+			resize();
+		</script>
+		<script src="http://www.omnimaga.org/checkLogin.php"></script>
+		<audio id="ding" src="beep.wav" hidden></audio>
+	</body>
+</html>
+<?php
+}else{
+	header('Location: http://www.omnimaga.org/checkLogin.php?textmode');
+}
 ?>