	if (textSize==undefined)		{			var textSize='10pt';			}	if (textColor==undefined)		{			var textColor='red';			}		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','<TABLE width=90% cellpadding=0 cellspacing=5 border=0 style=font-size:'+textSize+';font-family:sans-serif;color:'+textColor+';><TR><TD>California MANIA 2010</TD><TD>04/09/10</TD><TD align=right><A href=http://scwfitness.com/index.php?story=1278 style=color:'+textColor+'>Info</A></TD><TD align=right><A href=http://scwfitness.com/indexReg.php?selectedManiaID=121 style=margin-left:15pt;color:'+textColor+'>Reg</A></TD></TR></TABLE></DIV>');	