// JavaScript Document

// select link
function LinkSelect(form, sel)
{
	c = sel.selectedIndex;
	adrs = sel.options[c].value;
	if (adrs != "-" )
	{
		if (adrs == 1){
			window.open('http://www.eyed.jp/');
		} else {
		LinkWin=self;
		LinkWin.location.href=adrs;
		}
	}
}

// IE6
try {
	document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}


//Text Adjuster for Mac

if (navigator.userAgent.indexOf('Mac') != -1) {
	document.write('<style type=\"text/css\">body { font-size:100%; }</style>');
}


//Swap Image

function switchImage(imgName, imgSrc) 
{
  if (document.images)
  {
    if (imgSrc != "none")
    {
      document.images[imgName].src = imgSrc;
    }
  }
}

