//Replace the following ##'s// FFFFFF// fripp_hdr_slides // fripp_hdr_slides - do not include .swf (its already in the code)// hdr_pic_home.jpg - image name including ext for thoase w/o flash// 500// 105// true//this first thing checks if the viewer is using IE on Windowsvar agt=navigator.userAgent.toLowerCase();var major = parseInt(navigator.appVersion);var ie  = (agt.indexOf("msie") != -1);var nav = ((agt.indexOf('mozilla')!=-1) && ((agt.indexOf('spoofer')==-1) && (agt.indexOf('compatible') == -1)) && (agt.indexOf('opera')==-1));var win = ((agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1));if(ie && win){// Author:	Roland Smeenk// Website: www.smeenk.com// Last update: march 2000//http://www.smeenk.com/article.php?ArticleID=2// Detection of plug-ins in Internet Explorer with Windows 95 or NTfunction IEDetectObject(ClassID){	result = false;	// Internet explorer on windows	if (ie && win)	{		document.write('<SCRIPT LANGUAGE=VBScript\> \n');		document.write('on error resume next \n');		document.write('result = IsObject(CreateObject("' + ClassID + '")) \n');		document.write('</SCRIPT\>');	}	return result;}function writeDetectObject(ClassID){if (ie){if (IEDetectObject(ClassID))	{document.write("<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' WIDTH='500' HEIGHT='105' id='fripp_hdr_slides' ALIGN=''>");document.write("<PARAM NAME=movie VALUE='images/fripp_hdr_slides.swf'>");document.write("<PARAM NAME=loop VALUE=false>");document.write("<PARAM NAME=menu VALUE=false>");document.write("<PARAM NAME=quality VALUE=high>");document.write("<PARAM NAME=bgcolor VALUE=#FFFFFF>");document.write("<EMBED src='images/fripp_hdr_slides.swf' loop=false menu=false quality=high bgcolor=#FFFFFF WIDTH='500' HEIGHT='105' NAME='fripp_hdr_slides' ALIGN='' TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'>");document.write("</EMBED>");document.write("</OBJECT>");}	else {	document.write("<img src='images/hdr_pic_home.jpg' border='0' width='500' height='105'>");	}	}}writeDetectObject("ShockwaveFlash.ShockwaveFlash.1");}//for all non IE+Win browserselse {/* This code is Copyright (c) 1996 Nick Heinle and Athenia Associates,  * all rights reserved. In order to receive the right to license this  * code for use on your site the original code must be copied from the * Web site webreference.com/javascript/. License is granted to user to  * reuse this code on their own Web site if and only if this entire copyright * notice is included. Code written by Nick Heinle of webreference.com. */function plugdetect(plugName) {if (navigator.plugins[plugName]) { return true;}else {return false;}}if (plugdetect("Shockwave Flash") == true) {document.write("<OBJECT classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' WIDTH='500' HEIGHT='105' id='fripp_hdr_slides' ALIGN=''>");document.write("<PARAM NAME=movie VALUE='images/fripp_hdr_slides.swf'>");document.write("<PARAM NAME=loop VALUE=false>");document.write("<PARAM NAME=menu VALUE=false>");document.write("<PARAM NAME=quality VALUE=high>");document.write("<PARAM NAME=bgcolor VALUE=#FFFFFF>");document.write("<EMBED src='images/fripp_hdr_slides.swf' loop=false menu=false quality=high bgcolor=#FFFFFF WIDTH='500' HEIGHT='105' NAME='fripp_hdr_slides' ALIGN='' TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'>");document.write("</EMBED>");document.write("</OBJECT>");}else { document.write("<img src='images/hdr_pic_home.jpg' border=0 width='500' height='105'>");}}