function putFlash(str) {
	document.write(str);
}

function hidePopup()
{
 document.getElementById('popup').style.display="none"
 for(var i=0; i<document.images.length; i++){
		var img = document.images[i];
		var imgName = img.src.toUpperCase();
		if ((imgName.substring(imgName.length-3, imgName.length) == "GIF") || (imgName.substring(imgName.length-3, imgName.length) == "JPG")){
			img.src = img.src;
		}
	}	
}
