function PORTOWebTPS()  {
    var cgi         = 'http://price.toyokitchen.co.jp/cgi-bin/PORTO2008/bin/menu.cgi?menu=menu01';
    popWebTPS(cgi);
}

function COREWebTPS()  {
    var cgi         = 'http://price.toyokitchen.co.jp/cgi-bin/CORE/bin/menu.cgi?menu=menu01';
    popWebTPS(cgi);
}

function isolaWebTPS()  {
    var cgi         = 'http://price.toyokitchen.co.jp/cgi-bin/ISOLA2008/bin/menu.cgi?menu=menu01';
    popWebTPS(cgi);
}

function BAYWebTPS()  {
    var cgi         = 'http://price.toyokitchen.co.jp/cgi-bin/BAY2008/bin/menu.cgi?menu=menu01';
    popWebTPS(cgi);
}

function inoWebTPS()  {
    var cgi         = 'http://price.toyokitchen.co.jp/cgi-bin/ino2007/bin/menu.cgi?menu=menu01';
    popWebTPS(cgi);
}

function popWebTPS(url) {
    var w   =   window.screen.availWidth-13;
    var h   =   window.screen.availHeight-35;
    var webtpswin=  window.open(url,'WebTPS',
                        'width=' + w + 
                        ',height=' + h + 
                        ',resizable=yes,scrollbars=yes,menubar=yes' +
                        ',location=no,toolbar=yes,status=yes,top=0,left=0');
    webtpswin.focus();
    webtpswin.resizeTo(window.screen.availWidth,window.screen.availHeight);     
}

