﻿//
//	Copuright (c) 2008 gama All Right Reserved.
//	gama@miyachu.com

function dispButton()		{
	httpObj = createXMLHttpRequest(readComplete);
	if (httpObj)	{
		dd = new Date();
		cgi	=	"/cgi-bin/webshop/bin/soldout.cgi?" +	$("number").innerHTML + '&' + dd.getTime();
		httpObj.open("GET",cgi,true);
		httpObj.send(null);
	}
}

function readComplete()	{
	if ((httpObj.readyState == 4) && (httpObj.status == 200))	{
		if (httpObj.responseText == '0')	{
			$("intoButton").innerHTML
				= "<font size='+1' style='font-weight: bold; padding: 3px; background-color: #eeeeee; color: #CC0000;' > SOLD OUT </font>";
		} else {
			$("intoButton").innerHTML
				= "<input name='into' type='submit' value='カートに入れる' />";
		}
	} else {
		$("intoButton").innerHTML	= "";
	}
}

