// 订阅电子杂志
function ordermag() {
	var email = document.getElementById("yemail").value;
	if (email.length > 3 && email.indexOf("@") > 0)	{
		var orderhref=window.location;
		var url = "http://edm.yoka.com/Mail.aspx?yemail="+email+"&orderhref="+orderhref;
		window.location.href = url;
		//window.open(url, "_blank", "");
	} else {
		alert("请输入正确的邮件地址");
	}
}

// 必须要有 div_bottom_element 元素节点
var bottomHtml = '<div id="bnav">';
bottomHtml += '<a href="http://www.yoka.com/about/about.shtml">关于我们</a> | ';
bottomHtml += '<a href="http://www.yoka.com/about/copyright.shtml">版权信息</a> | ';
bottomHtml += '<a href="http://www.yoka.com/about/report.shtml">公司动态</a> | ';
bottomHtml += '<a href="http://www.yoka.com/about/friend.shtml">合作伙伴</a> | ';
bottomHtml += '<a href="http://www.yoka.com/about/job.shtml">招聘信息</a> | ';
bottomHtml += '<a href="http://www.yoka.com/about/contact.shtml">联系我们</a> | ';
bottomHtml += '<a href="http://comment.yoka.com/" target="_blank">意见反馈</a> | ';
bottomHtml += '<a href="http://www.yoka.com/about/maps.shtml">网站地图</a> | ';
bottomHtml += '<a href="http://www.yoka.com/help/index.shtml">网站帮助</a> | ';
bottomHtml += '<a href="http://rss.yoka.com/">RSS订阅</a>';
bottomHtml += '</div>';
bottomHtml += '<div id="bback"><input id="yemail" onclick="this.select()" value="请输入您的Email地址" name="yemail" onkeypress="if(event.keyCode==13){ordermag();return false;}else{return true;}"  /> <input onclick="ordermag();" type="button" value="订阅电子刊物" /></div>';
bottomHtml += '<div id="div_copy">YOKA时尚网　<a href="http://www.miibeian.gov.cn/" target="_blank"><font color="#ffffff">京ICP证070512号</font></a> 北京市公安局朝阳分局备案编号：1101050667<br><br>Copyright &copy; 2006-2012 Yoka.com, All rights reserved. </div>';

try
{
	var bottomElement = document.getElementById("div_bottom_element");
	bottomElement.innerHTML = bottomHtml;
}
catch (e)
{
	document.write(bottomHtml);
}


