function doMakeHoliday()
{
	addEgg();
	if (document.getElementById('imgEgg'))
	{
		var stLeft = wrbsGetObjectOffset('subtitle',1);
		var stTop = wrbsGetObjectOffset('subtitle',2);
		var imgHgt = 14;
	
		var img = document.getElementById('imgEgg');
		img.src = '/images/common/egg.gif';
		
		var hAvail = Math.floor((Math.random()*65)+1)
		var wAvail = Math.floor((Math.random()*300)+1)
		
		img.style.position = 'absolute';
		img.style.display = 'inline';
		img.style.zIndex = '50000';
		
		var hPos = (((parseInt(hAvail)+(stTop-20))+imgHgt) > (stTop+45)) ? ((parseInt(hAvail)+(stTop-20))-imgHgt) : (parseInt(hAvail)+(stTop-20));
		//if ((hPos + imgHgt) > 
		//(((parseInt(hAvail)+(stTop+45))+imgHgt) > (parseInt(hAvail)+(stTop+45))) ? ((parseInt(hAvail)+(stTop+45))-imgHgt) : (parseInt(hAvail)+(stTop+45));
		img.style.top = hPos + 'px'; //(parseInt(hAvail)+(stTop-20)) + 'px';
		img.style.left = (parseInt(wAvail)+(stLeft+245)) + 'px';	
		
		/*
		document.getElementById('testDiv').style.position = 'absolute';
		document.getElementById('testDiv').style.border = '1px #ff0000 solid'
		document.getElementById('testDiv').style.width = '300px';
		document.getElementById('testDiv').style.height = '65px'; 
		
		document.getElementById('testDiv').style.top = (stTop-20) + 'px';	
		document.getElementById('testDiv').style.left = (stLeft+245) + 'px';
		*/
	}			
}

function addEgg() 
{
  var ni = document.getElementById('Form1');
  
  /*
  var newDiv = document.createElement('div');
  newDiv.setAttribute('id','testDiv');    
  newDiv.innerHTML = '&nbsp;';
  ni.appendChild(newDiv);
  */
  
  var newAnchor = document.createElement('a');
  var newImg = document.createElement('img');
  newAnchor.setAttribute('href','http://www.rivervalleyranch.com/dynamic/DynCon.aspx?cid=266&fs=summercamp');
  newAnchor.setAttribute('title','');
  newImg.setAttribute('id','imgEgg');
  newImg.setAttribute('border','0');
  
  newAnchor.appendChild(newImg);
  ni.appendChild(newAnchor)
}