function ChangeGotoURL(obj)
{
	if(obj.value == "ご意見・ご質問")
	{
		var sURL = "index.htm";
	}
	if(obj.value == "取引協力先エントリー")
	{
		var sURL = "contact2/index.htm";
	}
	if(obj.value == "具体的な製作に関するお問合せ")
	{
		var sURL = "contact3/index.htm";
	}
	if(obj.value == "技術相談")
	{
		var sURL = "contact4/index.htm";
	}

	if(!sURL)
	{
		var sURL = "index.htm";
	}

	var sProtocol = location.protocol;
	var sHostName = location.hostname;
	var sPathName = location.pathname;

	if(sPathName.match("\/mail\/(.*?)\/"))
	{
		location.href = "../"+sURL;
	}
	else
	{
		location.href = sURL;
	}
}


function CheckEnterprise(obj)
{
	var check = obj.checked;
	var item1 = document.getElementById('company');
	var item2 = document.getElementById('position');
	item1.disabled = check;
	item2.disabled = check;
	if(check == true)
	{
		item1.style.backgroundColor = '#cccccc';
		item2.style.backgroundColor = '#cccccc';
	}
	else
	{
		item1.style.backgroundColor = '';
		item2.style.backgroundColor = '';
	}
}

onload = function()
{
	var checkItem = document.getElementById('enterprise');
	CheckEnterprise(checkItem);
}
