//全站公用JS函数

function ShowTemplate(id)  //显示企业会员模板
{
	window.open("/Template/Index.asp?id="+id,'','');
}
//显示家具超市

function ShowCS(id,parentid)
{
	window.open("/JJCS_Show.asp?id="+id+"&parentid="+parentid,'','scrollbars=yes')
}

//显示家具图库
function ShowJJTK(id,parentid)
{
	window.open('InternetShow.asp?id='+id+'&parentid='+parentid,'','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=yes')
}

//文章评论
function ShowComment(Id,Title)
{
	var iWidth = 620;
	var iHeight = 600;
	var iLeft = (screen.width-iWidth)/2;
	var iTop = (screen.height-iHeight)/2-20;
	var sParas = ",toolband=no,menuband=no,scrollbars=yes";
	
	var openWin = window.open("NewsComment.asp?Id="+Id+"&Title="+Title,"","top="+iTop+",left="+iLeft+",width="+iWidth+",height="+iHeight+""+sParas+"");
}

//文章文字缩放
function doZoom(size)
{
	document.getElementById('zoom').style.fontSize=size+'px';
}

//模板预览
function viewmb(form,id)
{
	if (form.TemplateID.value=='')
	{alert("未选择模板！");
	 return false;
	}
	window.open('/Template/'+form.TemplateID.value+'/index.asp?ID='+id,'','scrolbars=yes');
}