/*
Javascript 通用函数
2006年03月12日 19:39:47 星期日
Dev:LiuYueBo
*/

//页面提交搜索
function duSerarchSubmit()
{
	return true;
}

function DetailChangeFont(s)
{
	var Obj=document.getElementById("db_3_1");
	if (s==1) {
		Obj.style.fontSize="16px";
	} else if (s==2) {
		Obj.style.fontSize="14px";
	} else if (s==3) {
		Obj.style.fontSize="12px";
	}
}

function winClose()
{
	window.close();
}

//系统主函数
//2007年01月26日 星期五 11:50:11 lybykw
function MainClass()
{
	this.copyRightEndTime=function()
	{
		document.write("2007")
	}

	this.SiteVersion=function()
	{
		document.write(" Version 4.0");
	}

	this.SitePowered=function()
	{
		var str='Site powered by <a href="http://www.phome.net" target="_blank">ecms</a>.Template design:<a href="http://www.dj147.com" target="_blank">dj147.com</a></span></div><div id="bottom_2_0"><span>'+
		'<a href="http://validator.w3.org/check?uri=referer" target="_blank"><img src="/image/index/t_8.gif" width="80" height="15" border="0" alt=""></a>&nbsp;'+
		'<a href="http://jigsaw.w3.org/css-validator/" target="_blank"><img src="/image/index/t_9.gif" width="80" height="15" border="0" alt=""></a>&nbsp;'+
		'<a href="http://www.mozilla.org/products/firefox/" target="_blank"><img src="/image/index/t_10.gif" width="80" height="15" border="0" alt=""></a>&nbsp;'+
		'<a href="http://www.w3csites.com/profile.asp?u=dj147" target="_blank"><img src="/image/index/t_11.gif" width="80" height="15" border="0" alt=""></a>'+
		' <script id="y_js" src="http://stat.aliunion.cn.yahoo.com/stat.js?pubid=35200"></script>'+
		'';
		document.write(str);
	}
	this.AdVersion=function()
	{
		document.write('[Google Advertisement Version]');
	}
}

var Main=new MainClass();

//window.onload=function(){
//	alert("sdfasdf")
//}
