﻿function cart()
{
	//ファイル名指定('neocart.php')インラインフレーム表示
	document.write('<iframe src="https://p4002.secure.jp/~p4002062/products/cgi-bin/neocart.php" style="width:200px; height:520px;" id="tracking" name="cart_view"frameborder="0" scrolling="auto" marginheight="0" marginwidth="0"></iframe>');

    neocart_flag = false;
    return;
}

function button(name, price){
    var reg = new RegExp(',','g');
    var price = price.replace(reg,'');
    var name = name ? name.replace(reg,escape('&'))      : '';
        document.write('<form method="GET" action="https://p4002.secure.jp/~p4002062/products/cgi-bin/neocart_top.php"  target="cart_view" enctype="application/x-www-form-urlencoded">');
        document.write('<input type="hidden" name="name" value="'+name+'"><input type="hidden" name="price" value="'+price+'">');
        document.write('<button type="submit" class="btn_st">');
        document.write('<img src="https://p4002.secure.jp/~p4002062/products/parts/cart_button_01.gif" alt="カートに入れる" width="100" height="20" border="0" name="img1" ></button></form>');

    return;
}