function bigButton() {

	var flashOk=false;
	
	if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin && navigator.plugins && navigator.plugins["Shockwave Flash"]){
	  	flashOk=true;
	}
	
	if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0) {
		document.write('<SCRIPT LANGUAGE=VBScript\> \n');
		document.write('on error resume next \n');
		document.write('flashOkB = IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.1")) \n');
		document.write('</SCRIPT\> \n');
		if ( flashOkB ) {
		flashOk=true;
			}
	
	}
	
	if (flashOk) {
		document.write('<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"133\" height=\"107\">');
          document.write('<param name=movie value=\"bigButton.swf\">');
          document.write('<param name=quality value=high>');
          document.write('<embed src=\"bigButton.swf\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"133\" height=\"107\">');
          document.write('</embed>'); 
        document.write('</object>');
	}
	else
		document.write('<img src=\"images/bigButton.gif\" width=\"133\" height=\"107\" border=\"0\">');
	
}
