function openJoinPage(goodsId)
{
	document.join_form.action="https://www5.dtiserv3.com/cgi-bin/d2pjoin.fcgi";
	//document.join_form.action="https://join.preprod.dev002.ent/cgi-bin/d2pjoin.fcgi";
	document.join_form.goods_id.value= goodsId;
	document.join_form.username.value= userName;
	document.join_form.userid.value= userId;
	document.join_form.submit();
	//return false;
}

function writeJoinForm() 
{
	document.writeln('<form name="join_form" method="post" target="_blank">');
	document.writeln('<input type="hidden" name="goods_id">');
	document.writeln('<input type="hidden" name="username">');
	document.writeln('<input type="hidden" name="userid">');
	document.writeln('</form>');
}
