東京ひよ子「名菓ひよ子」
function changePage( formObj, pageNum )
{
if( pageNum > 0 )
{
formObj.action = formObj.action.replace('/list.html', '/list'+pageNum+'.html');
formObj.action = formObj.action.replace(/PAGE=\d+/, 'PAGE='+pageNum);
formObj.PAGE.value = pageNum;
}
else{
formObj.action = formObj.action.replace(/PAGE=\d+/, 'PAGE=1');
formObj.PAGE.value = 1;
}
formObj.submit();
}
function changeSort( formObj )
{
changePage(formObj, 0);
}
function changeType( formObj )
{
var select = document.getElementById('TypeKey');
var options = document.getElementById('TypeKey').options;
var type = options.item(select.selectedIndex).value;
if( type != '02') {
type = '01';
}
formObj.action = formObj.action.replace(/\/t(01|02)\/list.html$/, '/t'+type+'/list.html');
formObj.action = formObj.action.replace(/Type=(01|02)/, 'Type='+type);
formObj.Type.value = type;
changePage(formObj, 0);
}
//-->

















