﻿// JScript 文件

function Login()
{
    if(document.getElementById("ctl00_ContentPlaceHolder1_Left1_Login1_txtUserName").value=="")
    {
     alert("请输入会员名");
     document.getElementById("ctl00_ContentPlaceHolder1_Left1_Login1_txtUserName").focus();
     return false;
    }
    if(document.getElementById("ctl00_ContentPlaceHolder1_Left1_Login1_txtPwd").value=="")
    {
     alert("请输入密码");
     document.getElementById("ctl00_ContentPlaceHolder1_Left1_Login1_txtPwd").focus();
     return false;
    }
    return true;
}

function check()
{
if(document.getElementById("ctl00_ContentPlaceHolder1_txtUserName").value=="")
{
 alert("请输入您的姓名");
 document.getElementById("ctl00_ContentPlaceHolder1_txtUserName").focus();
 return false;
}
if(document.getElementById("ctl00_ContentPlaceHolder1_txtTitle").value=="")
{
 alert("请输入标题");
 document.getElementById("ctl00_ContentPlaceHolder1_txtTitle").focus();
 return false;
}
if(document.getElementById("ctl00_ContentPlaceHolder1_txtContent").value=="")
{
 alert("请输入内容");
 document.getElementById("ctl00_ContentPlaceHolder1_txtContent").focus();
 return false;
}
return true;
}


function save()
{
    window.external.AddFavorite('http://www.scltjt.com/','四川龙腾地产集团');
}

function showsub(tname,cur,tabnumber)
{
	for (i = 0;i<tabnumber;i++)
	{
		document.getElementById(tname+"_"+i).style.display = "none";
	}
	document.getElementById(tname+"_"+cur).style.display ="block";
}

//幻灯片        
        function play_images(pics, links, texts,picwidth,picheight,textheight)
        {
            var focus_width = picwidth;  //在这儿设置图片宽度540            
            var focus_height = picheight; //在这儿设置图片高度185            
            var text_height = textheight;   //在这儿设置文本高度18            
            var swf_height = focus_height + text_height;
            
            document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ focus_width +'" height="'+ swf_height +'">');
            document.write('<param name="allowScriptAccess" value="sameDomain"><param name="movie" value="http://www.scltjt.com/js/flashplayer.swf"><param name="quality" value="high"><param name="bgcolor" value="#ffffff">');
            document.write('<param name="menu" value="false"><param name=wmode value="opaque">');
            document.write('<param name="FlashVars" value="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'">');
            document.write('<embed wmode="opaque" FlashVars="pics='+pics+'&links='+links+'&texts='+texts+'&borderwidth='+focus_width+'&borderheight='+focus_height+'&textheight='+text_height+'" menu="false" bgcolor="#EBF3FA" quality="high" width="'+ focus_width +'" height="'+ focus_height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
            document.write('</object>');
        } 

function read(label,uid)
{
if(label=="1")
{
if(uid>0)
{
return true;
}
else
{
if(confirm("对不起,该信息只有本站会员才能查看，选择[确定]进行注册！"))
{
location.href='reg.aspx';
}
return false;
}
}
return true;
}