﻿function toCart(data)
{
	document.write('<form method="post" action="ycart.php?mode=add" style="margin: 0;">');
	document.write('<input type="submit" value="カートへ" style="margin: 0 0 5px 20px;">');
	for(var key in data){
		document.write('<input type="hidden" name="' + key + '" value="' + data[key] + '">');
	}
	document.write('</form>');
}

