function PopUp(URLStr,winName,features){
var popUpWin=0;
	if(popUpWin){
		if(!popUpWin.closed){
			popUpWin.close();
		}
	}
popUpWin = open(URLStr, winName, features);
}

var blinkText;
function BlinkText(){
var text = document.getElementById('newsflash');
	if(text.style.color == 'blue'){
		text.style.color = 'red';
	}else{
		text.style.color = 'blue';
	}
	blinkText = setTimeout("BlinkText()", 500);
}
function clearBlink(){
	clearTimeout(blinkText);
}
var content=new Array()
content[0]='<img src="images/BounceHouse3.jpg" width="196" height="159"><br>Bounce House'
content[1]='<img src="images/MiniSlide2.jpg" width="199" height="158"><br>Mini Slide'
content[2]='<img src="images/Twister3.jpg" width="190" height="175"><br>24\' x 24\' Twister Game'
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
appear()
setTimeout("window.onresize=regenerate",450)
}
}
function changetext(whichcontent){
if (document.all||document.getElementById){
cross_el=document.getElementById? document.getElementById("descriptions"):document.all.descriptions
cross_el.innerHTML=whichcontent
}
else if (document.layers){
document.d1.document.d2.document.write(whichcontent)
document.d1.document.d2.document.close()
}
}
function appear(){
document.d1.visibility='show'
}
window.onload=regenerate2