//高さの調節（ヘッダー、フッターを足した高さは553）var mh = null;function fixh(){OS = navigator.userAgent.match(/Mac/)? "mac" :"win"				//ネットスケープ		if( navigator.appName.charAt(0)=="N"){			if(window.innerHeight > 553){				if(OS == "mac"){					//alert("Mac NS")					mh = window.innerHeight-568;				}else{					//alert("Win NS")					mh = window.innerHeight-568;				}			}		}else{			if( document.body.clientHeight > 553){				if(OS == "mac"){					//alert("Mac IE")					mh = document.body.clientHeight-556;				}else{					//alert("Win IE")					mh = document.body.clientHeight-566;				}			}		}document.writeln('<img src="../../images/investors/common/1pix.gif" alt="" width="1" height="' +mh+'">');}// Reload NSif (document.layers) {	window.captureEvents(Event.RESIZE);	window.onResize = reloadPage;}function reloadPage(e) {	window.location.reload();}
