//If this browser understands the mimeTypes property and recognizes the MIME Type "application/x-shockwave-flash"...
	if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]){
		//...write out the following tag into the document.
		document.write("<embed src='media/flash/header.swf' width='900' height='175'></embed>");
	}

	//Otherwise,...
	else {
		//...write out the following tag into the document.
		document.write("<img src='media/pics/flash_filler.jpg' width='900' height='175' alt='Non-Shockwave Welcome'>");
	}

