function RunFlash()
{
document.write('<!-- ★★ ムービーで使用されている URL -->');
document.write('<div>');
document.write('<a href="sitepublis"></a>');
document.write('<a href="alive"></a>');
document.write('<a href="mobile"></a>');
document.write('<a href="enterprise"></a>');
document.write('</div>');
document.write('<!--ムービーで使用されているテキスト--><!-- ミックスネットワークのCMS製品 -->');
document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="900" height="285" id="top1">');
document.write('<param name="allowScriptAccess" VALUE="sameDomain">');
document.write('<param name="movie" VALUE="library/bg/011topflash.swf">');
document.write('<param name="quality" VALUE="high">');
document.write('<param name="bgcolor" VALUE="#ffffff">');
document.write('<param name="src" VALUE="library/bg/011topflash.swf">');
document.write('<param name="loop" VALUE="0">');
document.write('<param name="menu" VALUE="0">');
document.write('<embed src="library/bg/011topflash.swf" loop="false" menu="false" quality="high" bgcolor="#ffffff" width="900" height="285" name="top1" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('<noembed><a href="/service">MICSのCMS製品</a></noembed>');
document.write('</object>');
}





function initRollOvers() {
	if (!document.getElementById){
		return;
	}

	var preLoads = new Array();
	var allImages = document.getElementsByTagName('img');

	for (var i = 0; i < allImages.length; i++) {	   
		if (allImages[i].className == 'pbRollover') {
			var src = allImages[i].getAttribute('src');
			var ftype = src.substring(src.lastIndexOf('.'), src.length);
			var oSrc = src.replace(ftype, 'Hover'+ftype);

			//-- スワップ元、スワップ先画像の登録
			allImages[i].setAttribute('pSrc', src);
			allImages[i].setAttribute('oSrc', oSrc);
 
			//-- イメージのプリロード
			preLoads[i] = new Image();
			preLoads[i].src = oSrc;

			//-- イベントの設定
			allImages[i].onmouseover = function() {
				this.setAttribute('src', this.getAttribute('oSrc'));
			}
			allImages[i].onmouseout = function() {
				this.setAttribute('src', this.getAttribute('pSrc'));
			}
		}
	}
}

function addOnload(func){
	if ( typeof window.addEventListener != "undefined" ){
		window.addEventListener( "load", func, false );
	}else if ( typeof window.attachEvent != "undefined" ) {
		window.attachEvent( "onload", func );
	}else{
		if ( window.onload != null ){
			var oldOnload = window.onload;
			window.onload = function ( e ) {
			oldOnload( e );
			window[func]();
		};
	}else
		window.onload = func;
	}
}
addOnload(initRollOvers);






var firefox = (navigator.userAgent.indexOf("Firefox") != -1)? true : false;
if(firefox) {
 if(navigator.userAgent.indexOf("rv:1.8.1")!=-1) {
  document.write('<link rel="stylesheet" type="text/css" media="print" href="/library/print_ff2.css" />');
 }
}