// JavaScript Document
window.onload = function()
{
	init();	
	
	playImg();
}

function playflash()
{
	
	if (document.getElementById("FlashID"))
	{
		swfobject.registerObject("FlashID");	
	}
}

function ImgArray(len)
{
	this.length=len;
}

ImgName=new ImgArray(43);//数值＝总图片数量

for (var i = 1; i<44; i++) {  //数值＝总图片数量＋1
	ImgName[i-1]="/tu/xqit_nyh/PIC_"+i+".jpg";
}

function playImg()
{
	
	if (document.getElementById("img"))
	{
		
		num=Math.round(Math.random()*41);  //数值＝总图片数量-1
		
		if (num==0)	num=42;   //数值＝总图片数量，将落在两头的数值集中给最后一个数字
		try
		{
			document.getElementById("img").style.filter="blendTrans(Duration=1.5)";
			document.getElementById("img").filters[0].apply();
			document.getElementById("img").src=ImgName[num];
			document.getElementById("img").filters[0].play();
		}
		catch(e)
		{
			document.getElementById("img").src=ImgName[num];
		}
			mytimeout=setTimeout("playImg()",10000);
	}
}


function checkdomain()
{
	fulldomain = document.getElementById("fulldomain").value;
	fulldomain = fulldomain.replace("http://","");
	fulldomain = fulldomain.replace("www.","");
	sp = fulldomain.split(".");
	if (sp.length!=2)
	{
		alert("域名格式不正确");
		return false;
	}
	domain = sp[0];
	ext = sp[1];
	document.getElementById("domain").value = domain;
	document.getElementById("ext").value = ext;
}


function showmaston()
{
	document.write("倪");
	document.write("瑜");
	document.write("琥");
}


function showonline()
{
	a = "haijieqq";
	b = "msn.com";
	c = "17528";
	d = "5289";
	document.writeln("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
    document.writeln("	<tr>");
    document.writeln("		<td width=\"30\" align=\"right\"><a href=\"msnim:chat?contact="+ a +"@"+ b +"\"><img src=\"images/msn.gif\" width=\"16\" height=\"16\" border=\"0\" /></a></td>");
    document.writeln("		<td><a href=\"msnim:chat?contact="+ a +"@"+ b +"\">&nbsp;孙小姐</a></td>");
    document.writeln("	</tr>");
    document.writeln("	<tr>");
    document.writeln("		<td width=\"30\" align=\"right\"><a href=\"Tencent://Message/?menu=yes&exe=&uin="+ c +""+ d +"\" target=\"_blank\"><img src=\"http://wpa.qq.com/pa?p=1:"+ c +""+ d +":4\" border=\"0\" /></a></td>");
    document.writeln("		<td><a href=\"Tencent://Message/?menu=yes&exe=&uin="+ c +""+ d +"\" target=\"_blank\">&nbsp;孙小姐</a></td>");
    document.writeln("	</tr>");
    document.writeln("</table>");
}