javascript:void(document.execCommand("BackgroundImageCache",false,true))
function toggleHideReveal(byId)
	{
	var notSuccessful = true;
	if(document.getElementById)
		{
		var theThing = document.getElementById(byId);
		if(theThing)
			{
			if(theThing.style.display == "block")
				{
				theThing.style.display = "none";
				}
			else
				{
				theThing.style.display = "block";
				}
			notSuccessful = false;
			}
		}
	return notSuccessful;
	}
		 
	if (window.createPopup && document.compatMode && document.compatMode=="CSS1Compat"){ 
	  document.onreadystatechange = onresize = function fixIE6AbsPos()  { 
	    if (!document.body) return; 
	    if (document.body.style.margin != "0px") document.body.style.margin = 0; 
	    onresize = null; 
	    document.body.style.height = 0; 
	    setTimeout(function(){ document.body.style.height =  document.documentElement.scrollHeight+'px'; }, 1); 
	    setTimeout(function(){ onresize = fixIE6AbsPos; }, 100); 
	  } 
	} 

