//メニュー表示
function itemNavOn(x){ 
	obj=document.getElementById("itemNav"+x).style.visibility="visible";
}
//メニュー非表示
function itemNavOff(x){ 
	obj=document.getElementById("itemNav"+x).style.visibility="hidden"; 
}

//flash
function writeFlash( swf , width , height )
{
  var htm = ""
  htm+="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'"
  htm+="        codebase='http://download.macromedia.com/pub/shockwave/"
                    htm+="cabs/flash/swflash.cab'"
  htm+="        width   = " + width
  htm+="        height  = " + height + ">"
  htm+="<param  name    = movie value=" + swf + ">"
  htm+="<param  name    = quality value=high>"
  htm+="<embed  src     = " + swf + " "
  htm+="        quality = high  "
  htm+="        width   = "+ width
  htm+="        height  = " + height
  htm+="        type    = 'application/x-shockwave-flash' "
  htm+="        pluginspage='http://www.macromedia.com/go/getflashplayer'>"
  htm+="</embed>"
  htm+="</object>"
  
  document.write(htm)
}

//フッターナビ表示
function foot(){
  var htm = ""
  htm+="<dl>"
  htm+="<dt><a href='/index.html'><img src='/img/footLogo.gif' alt='FLASH REPORT' border='0' /><" + "/a><" + "/dt>"
  htm+="<dd>"
  htm+="<ul>"
  htm+="<li class='home'><a href='/index.html'>HOME<" + "/a><" + "/li>"
  htm+="<li class='mens'><a href='/men/index.htm'>MENS<" + "/a><" + "/li>"
  htm+="<li class='womens'><a href='/women/index.htm'>WOMENS<" + "/a><" + "/li>"
  htm+="<li class='brand'><a href='/concept.htm'>CONCEPT<" + "/a><" + "/li>"
  htm+="<li class='news'><a href='/information.htm'>NEWS<" + "/a><" + "/li>"
  htm+="<li class='shop'><a href='/shop/index.htm'>SHOP<" + "/a><" + "/li>"
  htm+="<li class='sitemap'><a href='/sitemap.htm'>SITE MAP<" + "/a><" + "/li>"
  htm+="<li class='sitepolicy'><a href='/sitepolicy.htm'>SITE POLICY<" + "/a><" + "/li>"
  htm+="<li class='privacypolicy'><a href='/privacypolicy.htm'>PRIVACY POLICY<" + "/a><" + "/li>"
  htm+="<li class='contact'><a href='https://flashreport.co.jp/contact/'>CONTACT<" + "/a><" + "/li>"
  htm+="<" + "/ul>"
  htm+="<" + "/dd>"
  htm+="<" + "/dl>"
  htm+="<address>(C)FLASH REPORT All Rights Reserved.<" + "/address>"
  document.write(htm)
}

//フッターメニュー非表示
function assistNav(){
  var htm = ""
  htm+="<ul>"
  htm+="<li class='contact'><a href='https://flashreport.co.jp/contact/'>CONTACT<" + "/a><" + "/li>"
  htm+="<li class='sitepolicy'><a href='/sitepolicy.htm'>SITE POLICY<" + "/a><" + "/li>"
  htm+="<li class='sitemap'><a href='/sitemap.htm'>SITE MAP<" + "/a><" + "/li>"
  htm+="<li class='home'><a href='/index.html'>HOME<" + "/a><" + "/li>"
  htm+="<" + "/ul>"
  document.write(htm)
}
