function chk_cart()
{
	if(document.getElementById('color').options.selectedIndex == "0")
	{
		alert("「カラー」を選択してください。");
		return false;
	}
	if((document.getElementById('size').options.selectedIndex == "0")||(document.getElementById('size').options.selectedIndex == ""))
	{
		alert("「サイズ」を選択してください。");
		return false;
	}

	if ( document.getElementById("size").value == "")
	{
		alert("在庫切れです。");
		return false;
	}

	document.selecttocart.submit();
	return true ;
}
function cartin_ok(str)
{
	alert(""+str+" をカートに入れました。");
	return false;
}
function loginWindow(url)
{
	window.open("about:blank","Login","width=760,height=760,menubar=no,toolbar=no,scrollbars=yes,resizable=yes");
	document.form2.target = 'Login';
	document.form2.method = 'post';
	document.form2.action = ''+url+'verify.php';
	document.form2.submit();
}
function lostPass(url,url2)
{
	window.open(""+url+"pass1.php?mode=reminder&from_domain="+url2+"","Login","width=760,height=760,menubar=no,toolbar=no,scrollbars=yes,resizable=yes");
}

