function userguide(href) {
url = href;
w = 650;
h = 650;
var option = 'toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width=' + w + ',height=' + h;
gWnd = window.open(url,'guide',option);
gWnd.focus();
}

function jumpCatalogCart(no1, no2) {
if (no1 == "" || no2 == "" ){
return false;
}
if (no1.length < 2 || no2.length < 2 || no1.match(/[^0-9]/) || no2.match(/[^0-9]/) ){
alert("申込番号を「3桁以上」-「2桁以上」の数値でご入力ください。");
return false;
}

// ショップコード(空を渡す)+"/"+カタログ申込番号（7桁）
with(document.forms['cart']){
method = "post";
action = "/gs_front/app/cart/blanket_cart/add_cart";
skuCodeUpper.value = no1;
skuCodeLower.value = no2;
amount.value = "1";

submit();
}
}

