function cart(URLC) {
	window.open(URLC, "cart", "width=500,height=600,scrollbars=1,resizable=0,location=0,menubar=0,toolbar=0,status=0").focus();
}

function toCart(formName) {
	var id;



	if (document.all) {
		if (document.all(formName).id) {
			id = document.all(formName).id.value;
			itemId =  formName + "-" + id;
		}
		else{
			itemId =  formName;
		}
	} else if (document.forms) {
		if (document.forms[formName].id) {
			id = document.forms[formName].id.value;
			itemId =  formName + "-" + id;
		}
		else{
			itemId =  formName;
		}
	} else {
		if (document.getElementById(formName).id) {
			id = document.getElementById(formName).id.value;
			itemId =  formName + "-" + id;
		}
		else{
			itemId =  formName;
		}
	}

	URL = "https://ssl.skillupjapan.net/sendenkaigi/online/tocart1.asp?item_id=" + itemId + "&num=1&aid=";
	window.open(URL, "cart", "width=500,height=600,scrollbars=1,resizable=0,location=0,menubar=0,toolbar=0,status=0").focus();
}
