')
//dynamically writeln out the table
document.writeln('
')
document.writeln('')
for(var i = 0 ; i < group.length ; i++){
if(group[i] != ''){
document.writeln('')
document.writeln('| '+group[i]+' | ')
document.writeln('
')
document.writeln('')
for(j = 0 ; j < 4 ; j++){
if(photo[index+j] != ''){
document.writeln(' | ')
}else{
document.writeln(' | ')
}
}
document.writeln('
')
document.writeln('')
for(j = 0 ; j < 4 ; j++){
if(photo[index+j] != ''){
document.writeln('| '+title[index+j]+' | ')
}else{
document.writeln(' | ')
}
}
document.writeln('
')
document.writeln('')
for(j = 0 ; j < 4 ; j++){
if(photo[index+j] != ''){
document.writeln('| '+price[index+j]+'円(税込) | ')
}else{
document.writeln(' | ')
}
}
document.writeln('
')
index+=4;
}
}
document.writeln('')
document.writeln('
')
//}
}
//-->