//ウインドウポップアップ

function openWin(wUrl,wName,wWidth,wHeight,wResize,wCenter,wScroll){

if ( document.all || document.layers || document.getElementById ){

scWidthCenter = screen.availWidth / 2;

scHeightCenter = screen.availHeight / 2;

}

else {

wCenter = 0;	

}	

if ( wCenter == 1 ){

wOption = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=" + wScroll + ",resizable=" + wResize + ",width=" + wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth / 2)) + ",top=" + (scHeightCenter - (wHeight / 2));

}

else {

wOption = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=" + wScroll + ",resizable=" + wResize + ",width=" + wWidth + ",height=" + wHeight;

}

window.open(wUrl,wName,wOption);

}



//壁紙ポップアップ

function openWallpaper(wFolder,wSize){

wURL="data/dl/wallpaper/wallpaper.html?n="+wFolder+"&s="+wSize;

openWin(wURL,'wallpaper',500,500,1,0,1);

}



//歌詞ポップアップ

function openLyric(songName){

wURL="data/cd/lyric/lyric.html?s="+songName;

openWin(wURL,'lyric',320,560,0,0,0);

}



//mp3ポップアップ

function openSound(songName){

wURL="data/cd/sound/sound.html?sn="+songName;

openWin(wURL,'sound',240,70,0,0,0);

}


