	if (textColor==undefined)		{			var textColor='rgb(75,255,150)';			}		function doNuhn() {}	function getRefToDiv(divID) {		//customised to suit this particular page - DON'T COPY THIS UNLESS YOU KNOW WHAT YOU ARE DOING!!		if( document.layers ) {return document.layers[divID+'C'].document.layers[divID]; }		if( document.getElementById ) {return document.getElementById(divID); }		if( document.all ) { return document.all[divID]; }		if( document[divID+'C'] ) {return document[divID+'C'].document[divID];  }		return false;		}	function rwDiv(divID_as_a_string, newMessage) 		{			var myReference = getRefToDiv(divID_as_a_string);			if( !myReference ) { window.alert('Nothing works in this browser'); return; }			if( myReference.innerHTML ) 				{ 				myReference.innerHTML = newMessage;				}				else 					{						if( myReference.document && myReference.document != window.document ) 							{								myReference.document.open();								myReference.document.write( newMessage);								myReference.document.close();								} 						else 							{								window.alert('Your browser does not allow the contents to be re-written.nI have not implemented an iframe here.nSee my generic re-writable elements example for how this should be done.'); return; 								}						}	}	rwDiv('scwTargetDiv','<CENTER><DIV style=font-size:8pt;font-family:sans-serif;color:'+textColor+';><DIV style=font-weight:bold;>Coming Up Next!</DIV>Philadelphia MANIA 2010<BR>02/19/10<BR><A href=http://scwfitness.com/index.php?story=1278 style=color:'+textColor+'>More Info</A><BR><A href=http://scwfitness.com/indexReg.php?selectedManiaID=120 style=color:'+textColor+'>Register now</A></DIV></CENTER>');	