// JavaScript Document

function RunMovie()
{
    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="960" height="350" id="top" align="middle">');
	document.write('<param name="movie" value="top.swf" />');
	document.write('<param name="quality" value="high" />');
	document.write('<embed src="top.swf" quality="high" bgcolor="#ffffff" width="960" height="350" name="top" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
	document.write('</object>');
} 


// JavaScript Document 工場見学ツアーポップアップWin
window.onload=autoPOP;

function autoPOP()
{
var x = document.getElementsByTagName('a');
for (var i=0;i<x.length;i++)
{
if (x[i].getAttribute('className') == 'factory' || x[i].getAttribute('class') == 'factory')
{
x[i].onclick = function () {
return winOpen(this.href)
}
x[i].title += '別窓で開きます';
}
}
};

function winOpen(url) {
window.open(
url,
'factory',
'width=660,height=500,scrollbars=0,resizable=1'
);

return false;
};
