function showFlashObject(objID, objSource, objWidth, objHeight, objQuality, objWmode, objBgcolor) { //page url var pageUrl = self.window.location.href; if(pageUrl.substring(0,5) == 'https') { swfUrl = "https"; } else { swfUrl = "http"; } /* Default Value Setting */ if (objID == "") objID = 'ShockwaveFlash1'; if (objWidth == "") objWidth = '0'; if (objHeight == "") objHeight = '0'; if (objQuality == "") objQuality = 'best'; /* Flash 8.0 version */ document.write(''); document.write(''); if (objWmode != "") { document.write(''); } else { objWmode = 'opaque'; document.write(''); } document.write(''); if (objQuality != "") { document.write(''); } else { objQuality = 'high'; } if (objBgcolor != "") { document.write(''); } else { objBgcolor = '#000000'; } document.write(''); document.write(''); }