// mouseover script

function ROLLOVER() 
{
if (!document.getElementsByTagName) return false;
var ovrImgList = document.getElementsByTagName('img');
for (var i = 0; i < ovrImgList.length; i++) {
if (ovrImgList[i].src.match(/_out\./i)) {
var loadedImg = new Image();
loadedImg.src = ovrImgList[i].src.replace(/_out\./i, '_on.');
ovrImgList[i].onmouseover = function() {
this.src = this.src.replace(/_out\./i, '_on.');
return false;
}
ovrImgList[i].onmouseout = function() {
this.src = this.src.replace(/_on\./i, '_out.');
return false;
}
}
}
return true;
}
window.onload = ROLLOVER;


// flash script

function top()
{
document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="760" height="221">\n');
document.write('<PARAM name="MOVIE" value="swf/eng_top.swf">\n');
document.write('<PARAM name="PLAY" value="true">\n');
document.write('<PARAM name="LOOP" value="true">\n');
document.write('<PARAM name="QUALITY" value="High">\n');
document.write('<EMBED src="swf/eng_top.swf" width="760" height="221" type="a">\n');
document.write('</object>\n');
}

function lineup()
{
document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="368" height="260">\n');
document.write('<PARAM name="MOVIE" value="swf/eng_lineup.swf">\n');
document.write('<PARAM name="PLAY" value="true">\n');
document.write('<PARAM name="LOOP" value="true">\n');
document.write('<PARAM name="QUALITY" value="High">\n');
document.write('<EMBED src="swf/eng_lineup.swf" width="368" height="260" type="a">\n');
document.write('</object>\n');
}

function fotter_top()
{
document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="760" height="40">\n');
document.write('<PARAM name="MOVIE" value="swf/fotter_en.swf">\n');
document.write('<PARAM name="PLAY" value="true">\n');
document.write('<PARAM name="LOOP" value="true">\n');
document.write('<PARAM name="QUALITY" value="High">\n');
document.write('<EMBED src="swf/fotter_en.swf" width="760" height="40" type="a">\n');
document.write('</object>\n');
}

function fotter()
{
document.write('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="760" height="40">\n');
document.write('<PARAM name="MOVIE" value="../swf/fotter_en.swf">\n');
document.write('<PARAM name="PLAY" value="true">\n');
document.write('<PARAM name="LOOP" value="true">\n');
document.write('<PARAM name="QUALITY" value="High">\n');
document.write('<EMBED src="../swf/fotter_en.swf" width="760" height="40" type="a">\n');
document.write('</object>\n');
}

// digital_book open script

function openPVWindow(theURL,pageNum,winName,features) { //v2.0
  win = window.open(theURL+"?page_num="+pageNum,winName,features);
  win.focus();
}

