<!--
function GoHtml( url ) {
//他商品ページ移動
document.mainform.action = 'turtle.php';
document.mainform.path.value = url;
document.mainform.target = '_top';
document.mainform.submit();
}
function GoNews() {
//Newsページ移動
document.mainform.action = '/news/news_list.php';
document.mainform.target = '_top';
document.mainform.submit();
}
function GoStockcars( cc ) {
//ページ移動
document.mainform.action = '/stockcars/car_list.php';
document.mainform.car_code.value = cc;
document.mainform.target = '_top';
document.mainform.submit();
}
function GoList( cc,gc ) {
//商品リストページ移動
document.mainform.action = '/s_cart/list.php';
document.mainform.car_code.value = cc;
document.mainform.genre_code.value = gc;
document.mainform.target = '_blank';
document.mainform.submit();
}
//-->