var ref1=document.referrer;
ref1 = ref1.replace("&", ","); 
ref1 = ref1.replace("&", ","); 
ref1 = ref1.replace("&", ","); 
ref1 = ref1.replace("&", ","); 
ref1 = ref1.replace("&", ","); 
ref1 = ref1.replace("&", ","); 
ref1 = ref1.replace("&", ","); 
ref1 = ref1.replace("&", ","); 
ref1 = ref1.replace("=", "_"); 
ref1 = ref1.replace("=", "_"); 
ref1 = ref1.replace("=", "_"); 
ref1 = ref1.replace("=", "_"); 
ref1 = ref1.replace("=", "_"); 
ref1 = ref1.replace("=", "_"); 
ref1 = ref1.replace("=", "_"); 
ref1 = ref1.replace("=", "_"); 
ref1 = ref1.replace("+", "!"); 
ref1 = ref1.replace("+", "!"); 
ref1 = ref1.replace("+", "!"); 
ref1 = ref1.replace("+", "!"); 
ref1 = ref1.replace("+", "!"); 
ref1 = ref1.replace("+", "!"); 
ref1 = ref1.replace("+", "!"); 
ref1 = ref1.replace("+", "!"); 




		<!--
		// Color FADE Advanced
		function MakeHexArray()
		{
		this.length = 16;
		for (var i = 1; i <= 10; i++) this[i] = i-1;
		this[11]="A"; this[12]="B"; this[13]="C"; this[14]="D"; this[15]="E"; this[16]="F";
		return this
		}
		hex = new MakeHexArray;
		function toHex(decimalColor)
		{
		var sixteens = decimalColor / 16;
		if (sixteens < 1) sixteens = 0;var sNum = sixteens + "";
		sNum = sNum.substring(0,2);
		sixteens = parseInt(sNum,10);
		var leftHex = hex[sixteens+1];
		var ones = decimalColor - sixteens*16;
		if (ones < 1) ones = 0;
		sNum = ones + "";
		sNum = sNum.substring(0,2);
		ones = parseInt(sNum,10);
		var rightHex = hex[ones+1];
		var outputHex = leftHex + "" + rightHex;
		return outputHex;
		}
		function nextColor(i,incMethod,textLength,brightness)
		{
		stepping = brightness/textLength;
		if (incMethod == 0) return 255;
		if (incMethod == 1) return 0;
		if (incMethod == 2) return (stepping*i);
		if (incMethod == 3) return (255-stepping*i);
		if (incMethod == 4) return (255*Math.sin(i/(textLength/3.14)));
		if (incMethod == 5) return (255*Math.abs( Math.cos(i/(textLength/3.14))));
		if (incMethod == 6) return (255*Math.abs( Math.sin(i/(textLength/6.28))));
		if (incMethod == 7) return (255*Math.abs( Math.cos(i/(textLength/6.28))));
		}
		function colorCycle(text,redMethod,greenMethod,blueMethod,brightness)
		{
		text = text.substring(2,text.length-4);
		for (i = 1; i < text.length; i++)
		{
		decimalRed = nextColor(i,redMethod,text.length,brightness);
		hexRed = toHex(decimalRed);
		decimalGreen = nextColor(i,greenMethod,text.length,brightness);
		hexGreen = toHex(decimalGreen);
		decimalBlue = nextColor(i,blueMethod,text.length,brightness);
		hexBlue = toHex(decimalBlue);
		document.write("<FONT COLOR='#"+hexRed+hexGreen+hexBlue+"'>"+text.substring(i,i+1)+"</FONT>");
		}
		}
