//swf表示
function write_swf( swf , width , height ,bgcolor){
	var htm = ""
	htm+="<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' "
	htm+="codebase='https://download.macromedia.com/pub/shockwave/"
	htm+="cabs/flash/swflash.cab#version=7,0,19,0'"
	htm+="  width   = " + width
	htm+="   height = " + height + "/>"
	htm+="<param name='allowScriptAccess' value='always' />"
	htm+="<param  name    = 'movie' value='" + swf + "' />"
	htm+="<param  name    = 'quality' value='high' />"
	htm+="<param  name    = 'BGCOLOR' value='" + bgcolor + "' />"
	htm+="<param  name    = 'wmode' value='transparent' />"
	htm+="<embed  src     = " + swf + " "
	htm+=" quality = 'high' allowScriptAccess='always'"
	htm+=" width   = '"+ width + "'"
	htm+=" height  = '" + height + "'"
	htm+=" bgcolor  = '" + bgcolor + "'"
	htm+=" wmode  = 'transparent'"
	htm+=" type    = 'application/x-shockwave-flash' "
	htm+="pluginspage='https://www.macromedia.com/go/getflashplayer' />"
	htm+="</embed>"
	htm+="</object>"
	
	document.write(htm)
}


//copyright表記
function write_copy(isp){
	var cop = ""
	cop+='<table width="870" border="0" cellspacing="0" cellpadding="4"><tr><td align="left"><div align="left" class="t10h12g">Copyright Catherine Kalama Becker/Copyright Doya Nardin<br>Copyright Hokulani International Co.,Ltd.</div></td><td align="right"><div align="right" class="t10h12g">Copyright 2006 <a href="http://www.sion.ne.jp/" target="_blank" class="link2">Sion Media Office</a> Co.,Ltd.<br>Copyright 2006 <a href="http://www.venusfortune.com/" target="_new" class="link2">Venus Fortune</a></div></td></tr></table>'
	document.write(cop)
}

//copyright表記
function write_copy_s(isp){
	var cop = ""
	cop+='<table width="707" border="0" cellspacing="0" cellpadding="4"><tr><td align="left"><div align="left" class="t10h12g">Copyright Catherine Kalama Becker/Copyright Doya Nardin<br>Copyright Hokulani International Co.,Ltd.</div></td><td align="right"><div align="right" class="t10h12g">Copyright 2006 <a href="http://www.sion.ne.jp/" target="_blank" class="link2">Sion Media Office</a> Co.,Ltd.<br>Copyright 2006 <a href="http://www.venusfortune.com/" target="_new" class="link2">Venus Fortune</a></div></td></tr></table>'
	document.write(cop)
}


//フォーム用
function ExForm( card ){
	document.cform.tr.value = card;
	document.cform.submit();
}

//ログ取得
function write_log(contents,isp){
	document.write("<img src='http://www.sion.venusfortune.com/accesslog/mana/manacard/acclog.cgi?");
	document.write("referrer="+document.referrer+"&");
	document.write("width="+screen.width+"&");
	document.write("height="+screen.height+"&");
	document.write("color="+screen.colorDepth+"'>");
}

//ログ取得
function write_log2(contents,isp){
	document.write("<img src='http://manacard.com/log/acclog.cgi?");
	document.write("referrer="+document.referrer+"&");
	document.write("width="+screen.width+"&");
	document.write("height="+screen.height+"&");
	document.write("color="+screen.colorDepth+"'>");
}

// セレクトボックスでリンク
function select_url(sel){
	if(sel.options[sel.selectedIndex].value){
		location.href = sel.options[sel.selectedIndex].value;
	}
}
