function openw(toURL) {
	window.open(toURL,'','width=400,height=300');
}

/*
	getCookie(name)
	参数:name
			name为欲取得的cookie的名字
	功能:取得名字为name的cookie
*/
function getCookie(name) {

  var search;

  search = name + "="
  offset = document.cookie.indexOf(search) 
  if (offset != -1) {
    offset += search.length ;
    end = document.cookie.indexOf(";", offset) ;
    if (end == -1)
      end = document.cookie.length;
    return document.cookie.substring(offset, end);
  }
  else
    return "";
}

function unipro_checkdata()
{
	if ( document.unipro_head_login_form.userid.value == "" || document.unipro_head_login_form.userid.value == "null" || document.unipro_head_login_form.userid.value == null || document.unipro_head_login_form.userid.value == "undefined" )
	{
		alert("请输入手机号码");
        return false;
	}
	if ( document.unipro_head_login_form.passcode.value == "" || document.unipro_head_login_form.passcode.value == "null" || document.unipro_head_login_form.passcode.value == null || document.unipro_head_login_form.passcode.value == "undefined" )
	{
		alert("密码不可以为空");
        return false;
	}

	return true;
}

/*
	unipro_clearCookie(name)
	参数:name
			name为欲清空cookie的名字
	功能:清除名字为name的cookie
*/
function unipro_clearCookie(name ) {
	document.cookie=name+"=; " + "domain=sina.com.cn; path=/; ";     
	//bites = document.cookie.split("; ");
} 

/*
	getMobileNum(ckName)
	参数:ckName
			ckName为cookie的名字
	功能:取得cookie中的手机信息
*/
function getMobileNum(ckName){
var userInfo = getCookie(ckName).split(":");
	return userInfo[2];
}

/*
	unipro_UniProLogout()
	功能:安全退出时清除COOKIE
*/
function unipro_UniProLogout() {
	unipro_clearCookie("SINAPRO");
	unipro_clearCookie("SINA-AVATAR");
	unipro_clearCookie("SINAPROC");
	unipro_clearCookie("nick");
	unipro_clearCookie("SINA_NU");      
	unipro_clearCookie("SINA_OU");
	unipro_clearCookie("appmask");
	unipro_clearCookie("gender");
	unipro_clearCookie("UNIPROTM");
	unipro_clearCookie("UNIPROU");
	unipro_clearCookie("SINA_USER");
	unipro_clearCookie("SMS_COOKIE");
	unipro_clearCookie("SID");
	unipro_clearCookie("PAYSID");
	unipro_clearCookie("UNIPROM");
	return true;
}

/*
	print_stand_unipro_head()
	功能:输出提示登录信息,横条,未用
*/
function print_stand_unipro_head()
{
	document.write("<form name=\"unipro_head_login_form\" method=\"post\" action=\"/cgi-bin/checkUser.cgi\">");
	document.write("<table width=\"97%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">");
	document.write("  <tr>");
	document.write("    <td align=\"center\"><a href=\"http://unipro.sina.com.cn/register.html\" target=_blace>通行证</a>登录: &nbsp;&nbsp;&nbsp;");
	document.write("      登录名 &nbsp;&nbsp;&nbsp;");
	document.write("      <input name=login type=text id=\"login\" size=12>");
	document.write("      &nbsp;&nbsp;&nbsp; 密&nbsp;&nbsp;码&nbsp;&nbsp;&nbsp;<input name=passwd type=password id=\"passwd\" size=12>");
	document.write("        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; ");
	document.write("        <input name=\"submit\" type=submit style=\"background-image:url(http://unipro.sina.com.cn/images/001A.GIF);border-width:0px;width:65;height:19;padding-top:3px;\" value=\" \">&nbsp;&nbsp;&nbsp;");
	document.write("      <a href=\"http://unipro.sina.com.cn/getpass.html\" target=_blace>忘记密码</a>&nbsp;&nbsp;&nbsp;<a href=\"http://unipro.sina.com.cn/register.html\" target=_blace><img src=\"http://unipro.sina.com.cn/images/001D.GIF\" width=\"65\" height=\"19\" border=0></a></td>");
	document.write("  </tr>");
	document.write("</table>");
	document.write("</form>");
}

/*
	print_stand_unipro_welcome(locationaddress)
	参数:locationaddress
			locationaddress登出时location的地址
	功能:输出欢迎信息,横条,未使用
*/
function print_stand_unipro_welcome(locationaddress)
{
	var unipro_login_nickname = getCookie( "nick" );
	var unipro_login_pos = unipro_login_nickname.indexOf( "(" );
	if ( unipro_login_pos != -1 )
	{
		unipro_login_nickname = unipro_login_nickname.substr( 0, unipro_login_pos );
	}
	
	document.write("<table width=\"97%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">");
	document.write("  <tr>");
	document.write("    <td align=\"center\">");
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" 
	    && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) {
		//document.write(unipro_login_nickname+"，您好&nbsp;&nbsp;<a href=\"http://unipro.sina.com.cn/cgi-bin/logout.cgi\" target=_blace>安全退出</a>");
		document.write(unipro_login_nickname+"，您好&nbsp;&nbsp;<a href=\"#\" onClick=\"javascript:unipro_UniProLogout();window.location='" + locationaddress + "';\">安全退出</a>");
	} else {
		//document.write( "新浪过客" +"，您好&nbsp;&nbsp;<a href=\"http://unipro.sina.com.cn/cgi-bin/logout.cgi\" target=_blace>安全退出</a>");
		document.write( "新浪过客" +"，您好&nbsp;&nbsp;<a href=\"#\" onClick=\"javascript:unipro_UniProLogout();window.location='" + locationaddress + "';\">安全退出</a>");
	}
	document.write("    </td>");
	document.write("  </tr>");
	document.write("</table>");
}

/*
	print_stand_unipro_head2()
	功能:输出提示登录信息,竖条,未用
*/
function print_stand_unipro_head2()
{
	document.write("<form name=\"unipro_head_login_form\" method=\"post\" action=\"/cgi-bin/checkUser.cgi\">");
	document.write("	<table width=156 height=119 border=0 cellpadding=0 cellspacing=0>");
	document.write("     <tr> ");
	document.write("      <td height=25 colspan=\"2\" align=left valign=bottom bgcolor=#ffffff style=\"padding-left:12px;padding-top:10px\"><a href=\"http://unipro.sina.com.cn/register.html\" target=_blace>通行证</a>登录</td>");
	document.write("     </tr>");
	document.write("     <tr> ");
	document.write("      <td width=76 align=right height=28 valign=bottom>登录名：</td>");
	document.write("      <td width=80 valign=bottom><input name=login type=text id=\"login\" size=12></td>");
	document.write("     </tr>");
	document.write("     <tr> ");
	document.write("      <td height=24 valign=bottom align=right>密&nbsp;&nbsp;码：</td>");
	document.write("      <td valign=bottom><input name=passwd type=password id=\"passwd\" size=12></td>");
	document.write("     </tr>");
	document.write("     <tr height=24> ");
	document.write("      <td><input name=\"submit\" type=submit style=\"background-image:url(http://unipro.sina.com.cn/images/001A.GIF);border-width:0px;width:65;height:19;padding-top:3px;\" value=\" \"></td>");
	document.write("      <td valign=bottom align=left> &nbsp;&nbsp;&nbsp;&nbsp;<a href=\"http://unipro.sina.com.cn/getpass.html\" target=_blace>忘记密码</a></td>");
	document.write("     </tr>");
	document.write("     <tr height=29> ");
	document.write("      <td><a href=\"http://unipro.sina.com.cn/register.html\" target=_blace><img src=\"http://unipro.sina.com.cn/images/001D.GIF\" width=\"65\" height=\"19\" border=0></a></td>");
	document.write("      <td valign=bottom align=left>&nbsp;</td>");
	document.write("     </tr>");
	document.write("     <tr height=8> ");
	document.write("     <td></td>");
	document.write("     <td></td>");
	document.write("     </tr>");
	document.write("    </table> ");
	document.write("</form>");
}

/*
	print_stand_unipro_welcome2(locationaddress)
	参数:locationaddress
			locationaddress登出时location的地址
	功能:输出欢迎信息,竖条,未使用
*/
function print_stand_unipro_welcome2(locationaddress)
{
	var unipro_login_nickname = getCookie( "nick" );
	var unipro_login_pos = unipro_login_nickname.indexOf( "(" );
	if ( unipro_login_pos != -1 )
	{
		unipro_login_nickname = unipro_login_nickname.substr( 0, unipro_login_pos );
	}
	document.write("<table width=156 height=119 border=0 cellpadding=0 cellspacing=0>");
	document.write("    <tr>");
	document.write("      <td>" );
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) 
	{
		document.write(unipro_login_nickname+"，");
	} 
	else 
	{
		document.write( "新浪过客，" );
	}
	
	document.write("</td>");
	document.write("    </tr>");
	document.write("    <tr>");
	document.write("      <td>您好&nbsp;&nbsp;</td>");
	document.write("    </tr>");
	document.write("    <tr>");
	//document.write("      <td><a href=\"http://unipro.sina.com.cn/cgi-bin/logout.cgi\" target=_blace>安全退出</a></td>");
	document.write("      <td><a href=\"#\" onClick=\"javascript:unipro_UniProLogout();window.location='" + locationaddress + "';\">安全退出</a></td>");
	document.write("    </tr>");
	document.write("  </table>");
}

/*
	print_stand_unipro_head3()
	功能:输出提示登录信息,横条,正在使用
*/
function print_stand_unipro_head3()
{
	document.write("<table width=100% height=30 border=0 cellpadding=0 cellspacing=0 background=http://unipro.sina.com.cn/images/txz_bg00.gif  bgcolor=3562E0 id=txz>");
	document.write("  <tr>");
	document.write("    <td height=6></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("  </tr>");
	document.write("  <tr>");
	document.write("    <td width=90 height=19 align=center><a href=http://unipro.sina.com.cn><img src=http://unipro.sina.com.cn/images/txz_logo01.gif width=72 height=19 border=\"0\"></a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=60 align=center><a href=http://mail.sina.com.cn/freemail/class=txz>免费邮箱</a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=73 align=center><a href=http://sinapay.sina.com.cn class=txz>通行币帐户</a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=60 align=center><a href=http://unipro.sina.com.cn class=txz>互动社区</a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=60 align=center><a href=http://unipro.sina.com.cn/chginfo.html class=txz>会员设置</a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=60 align=center><a href=http://unipro.sina.com.cn/help.html class=txz target=\"_blank\">帮助中心</a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=60 align=center><a href=http://www.sina.com.cn target=_blank class=txz1>新浪首页</a></td>");
	document.write("    <td>");
	document.write("	  <table width=100% border=0 cellspacing=0 cellpadding=0>");
	document.write("        <tr> ");
	document.write("          <td width=16></td>");
	document.write("          <td><input name=\"image\" type=\"image\" src=http://unipro.sina.com.cn/images/txz_button01.gif width=65 height=19 onClick=\"window.location='http://unipro.sina.com.cn/'\"></td>");
	document.write("        </tr>");
	document.write("      </table>");
	document.write("	</td>");
	document.write("  </tr>");
	document.write("  <tr align=center>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("	<td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("  </tr>");
	document.write("</table>");
}

/*
	print_stand_unipro_welcome3(locationaddress)
	参数:locationaddress
			locationaddress为点击安全退出时localtion的地址
	功能:输出欢迎信息,横条,正在使用
*/
function print_stand_unipro_welcome3(locationaddress)
{
	document.write("<table width=100% height=30 border=0 cellpadding=0 cellspacing=0 background=http://unipro.sina.com.cn/images/txz_bg00.gif  bgcolor=3562E0 id=txz>");
	document.write("  <tr>");
	document.write("    <td height=6></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("    <td width=5><img src=http://unipro.sina.com.cn/images/txz_s01.gif width=5 height=6></td>");
	document.write("    <td ></td>");
	document.write("  </tr>");
	document.write("  <tr>");
	document.write("    <td width=90 height=19 align=center><a href=http://unipro.sina.com.cn><img src=http://unipro.sina.com.cn/images/txz_logo01.gif width=72 height=19 border=\"0\"></a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=60 align=center><a href=http://mail.sina.com.cn/freemail/class=txz>免费邮箱</a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=73 align=center><a href=http://sinapay.sina.com.cn class=txz>通行币帐户</a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=60 align=center><a href=http://unipro.sina.com.cn class=txz>互动社区</a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=60 align=center><a href=http://unipro.sina.com.cn/chginfo.html class=txz>会员设置</a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=60 align=center><a href=http://unipro.sina.com.cn/help.html class=txz target=\"_blank\">帮助中心</a></td>");

	document.write("    <td><img src=http://unipro.sina.com.cn/images/txz_s02.gif width=5 height=19></td>");
	document.write("    <td width=60 align=center><a href=http://www.sina.com.cn target=_blank class=txz1>新浪首页</a></td>");
	document.write("    <td>");
	document.write("	  <table width=100% border=0 cellspacing=0 cellpadding=0>");
	document.write("        <tr> ");
	document.write("          <td width=16></td>");
	document.write("          <td><input type=\"image\" src=http://unipro.sina.com.cn/images/txz_button02.gif width=65 height=19 onClick=\"javascript:unipro_UniProLogout();window.location='" + locationaddress + "';\"></td>");
	document.write("        </tr>");
	document.write("      </table>");
	document.write("	</td>");
	document.write("  </tr>");
	document.write("  <tr align=center>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("	<td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("    <td></td>");
	document.write("  </tr>");
	document.write("</table>");
}

/*
	print_stand_unipro_head4()
	功能:输出用户名,密码,验证码登录信息,正在使用
*/
function print_stand_unipro_head4()
{
	document.write("	<table width=100%  border=0 cellpadding=0 cellspacing=5>");
	document.write("      <tr>");
	document.write("        <td>		<table width=100% height=180  border=0 cellpadding=0 cellspacing=2>");
	document.write("          <tr>");
	document.write("            <td><table width=100%  border=0 cellspacing=2 cellpadding=0>");
	document.write("              <tr>");
	document.write("                <td width=13><img src=http://unipro.sina.com.cn/images/ico01.gif width=13 height=13></td>");
	document.write("                <td>登录通行证后可直接进入新浪各项服务。</td>");
	document.write("              </tr>");
	document.write("            </table></td>");
	document.write("          </tr>");
	document.write("          <tr>");
	document.write("            <td align=center><form name=\"unipro_head_login_form\" method=\"post\" action=\"/cgi-bin/unilogin.cgi\">");
                          
	document.write("                          <table width=90%  border=0 cellspacing=2 cellpadding=0>");
	document.write("              <tr>");
	document.write("                <td width=13></td>");
	document.write("                <td><table width=100%  border=0 cellspacing=2 cellpadding=0>");
	document.write("                  <tr>");
	document.write("                    <td>登录名</td>");
	document.write("                    <td><input size=12 class=inp name=\"userid\"></td>");
	document.write("                  </tr>");
	document.write("                  <tr>");
	document.write("                    <td>密&nbsp;&nbsp;码</td>");
	document.write("                    <td><input type=\"password\" class=inp size=12 name=\"passcode\"></td>");
	document.write("                  </tr>");
	document.write("					<tr>");
	document.write("                    <td>&nbsp;</td>");
	document.write("                                    <td>");
	var pp= Math.round((Math.random()) * 100000000);
	document.write("<img src='/cgi-bin/imgran?r=" + pp + "' width=80 height=30>");
	document.write("</td>");
	document.write("                  </tr>");
	document.write("					<tr>");
	document.write("                    <td>验证码</td>");
	document.write("                    <td><input class=inp value=\"请输入以上数字\" size=12 onclick=\"this.value=''\" name=\"confcode\"></td>");
	document.write("                  </tr>");                             
	document.write("                </table></td>");
	document.write("                <td width=70 align=center><table width=50  border=0 cellspacing=0 cellpadding=0>");
	document.write("                  <tr>");
	document.write("                    <td><input  onclick=\"return unipro_checkdata();\" name=image2 type=image	 src=http://unipro.sina.com.cn/images/bt01.gif width=54 height=50></td>");
	document.write("                  </tr>");
	document.write("                  <tr>");
	document.write("                    <td height=20></td>");
	document.write("                  </tr>");
	document.write("                </table></td>");
	document.write("              </tr>");
	document.write("            </table>");
	document.write("			</form>");
	document.write("		  </td>");
	document.write("          </tr>");
	document.write("          <tr>");
	document.write("            <td align=center><table width=60%  border=0 cellspacing=2 cellpadding=0>");
	document.write("              <tr>");
	document.write("                <td width=50% align=center><a href=\"http://unipro.sina.com.cn/getpass.html\" target=\"_blank\">忘记密码</a></td>");
	document.write("                <td align=center><a href=\"http://unipro.sina.com.cn/help.html\" target=\"_blank\">使用帮助</a></td>");
	document.write("              </tr>");
	document.write("            </table></td>");
	document.write("          </tr>");
	document.write("          <tr>");
	document.write("            <td height=2 background=http://unipro.sina.com.cn/images/bg02.gif></td>");
	document.write("          </tr>");
	document.write("          <tr>");
	document.write("                        <td height=30 align=center><a href=\"http://unipro.sina.com.cn/register.html\"><img src=http://unipro.sina.com.cn/images/bt02.gif width=104 height=28 border=\"0\"></a></td>");
	document.write("          </tr>");
	document.write("        </table>");
}

/*
	print_stand_unipro_welcome4(locationaddress)
	参数:locationaddress
			locationaddress为点击安全退出时localtion的地址
	功能:输出欢迎信息
*/
function print_stand_unipro_welcome4(locationaddress)
{
	var unipro_login_nickname = getCookie( "nick" );
	var unipro_login_nick = getCookie( "nick" );
	var unipro_login_mailinfo = getCookie( "UNIPROM" );
	var unipro_login_pos = unipro_login_nickname.indexOf( "(" );
	var unipro_login_first = unipro_login_nick.indexOf( "(" );
	var unipro_login_last = unipro_login_nick.indexOf( ")" );
	var unipro_login_uniqueid = "";
	



	if ( unipro_login_pos != -1 )
	{
		unipro_login_nickname = unipro_login_nickname.substr( 0, unipro_login_pos );
	}

	if ( unipro_login_first != -1 && unipro_login_last != -1)
	{
		unipro_login_first = unipro_login_first + 1;
		unipro_login_last = unipro_login_last;
		unipro_login_uniqueid = unipro_login_nick.substring( unipro_login_first, unipro_login_last);
	}
	
	document.write("	<table width=100%  border=0 cellpadding=0 cellspacing=5>");
	document.write("      <tr>");
	document.write("        <td>		<table width=100% height=180  border=0 cellpadding=0 cellspacing=2>");
	document.write("          <tr>");
	document.write("            <td><table width=100%  border=0 cellspacing=2 cellpadding=0>");
	document.write("              <tr>");
	document.write("                <td width=13><img src=http://unipro.sina.com.cn/images/ico01.gif width=13 height=13></td>");
	document.write("                <td class=gg1>");
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) 
	{
		document.write(unipro_login_nickname+" ，您好 </td>");
	} 
	else 
	{
		document.write( "新浪过客 ，您好 </td>" );
	}
	
	document.write("              </tr>");
	document.write("            </table></td>");
	document.write("          </tr>");
	document.write("          <tr>" );
	document.write("            <td><table width=100%  border=0 cellspacing=2 cellpadding=0>");
	document.write("              <tr>");
	document.write("                <td width=13><img src=http://unipro.sina.com.cn/images/ico01.gif width=13 height=13></td>");
	document.write("                <td> 您的会员编码： ");
	
	if ( unipro_login_uniqueid!="" && unipro_login_uniqueid!="null" && unipro_login_uniqueid!=null && unipro_login_uniqueid!="undefined" ) 
	{
		document.write(unipro_login_uniqueid+"</td>");
	} 
	else 
	{
		document.write( "未知</td>" );
	}
	document.write("              </tr>" );
	document.write("            </table></td>" );
	document.write("          </tr>" );
	document.write("          <tr>" );
	document.write("            <td><table width=100%  border=0 cellspacing=2 cellpadding=0>" );
	document.write("                <tr>" );
	document.write("                  <td width=13><img src=http://unipro.sina.com.cn/images/ico01.gif width=13 height=13></td>" );
	document.write("                  <td>您的手机号码：");

	var unipro_login_mobile = getMobileNum('SINA_NU');
	if ( unipro_login_mobile!="" && unipro_login_mobile!="null" && unipro_login_mobile!=null && unipro_login_mobile!="undefined"  && unipro_login_mobile!="{") 
	{
		document.write(unipro_login_mobile+"</td>");
	} 
	else 
	{
		document.write( "<img src=/images/mcenter_055.gif width=7 height=10><a href=\"javascript:openw('http://unipro.sina.com.cn/popup.html')\";>登记手机</a><font color=red>(免费)</font></td>" );
		document.write("                </tr>" );
	}
	



	if ( unipro_login_mailinfo!="" && unipro_login_mailinfo!="null" && unipro_login_mailinfo!=null && unipro_login_mailinfo!="undefined" ) 
	{
		var unipro_tempstr = unipro_login_mailinfo.split(":");
		if ( unipro_tempstr[0]!="" && unipro_tempstr[0]!="null" && unipro_tempstr[0]!=null && unipro_tempstr[0]!="undefined" && unipro_tempstr[1]!="" && unipro_tempstr[1]!="null" && unipro_tempstr[1]!=null && unipro_tempstr[1]!="undefined") 
		{
			document.write("                <tr>" );
			document.write("            <td><table width=100%  border=0 cellspacing=2 cellpadding=0>");
			document.write("              <tr>");
			document.write("                <td width=13><img src=http://unipro.sina.com.cn/images/ico01.gif width=13 height=13></td>");
			document.write("                <td class=gg1>");
			document.write("您的免费邮箱是："+unipro_tempstr[0]+"</td>");
			document.write("              </tr>");
			document.write("            </table></td>");
			document.write("          </tr><tr>");
			document.write("            <td><table width=100%  border=0 cellspacing=2 cellpadding=0>");
			document.write("              <tr>");
			document.write("                <td width=13>&nbsp;</td>");
			document.write("                <td class=gg1>");
			document.write("您现在有"+unipro_tempstr[1]+"封未读邮件,<a href=http://mail.sina.com.cn>进入邮箱</a></td>");
			document.write("              </tr>");
			document.write("            </table></td>");
			document.write("          </tr><tr>");
		}
	} 
	else
	{
		document.write("            <td><table width=100%  border=0 cellspacing=2 cellpadding=0>" );
		document.write("                <tr>" );
		document.write("                  <td width=13><img src=http://unipro.sina.com.cn/images/ico01.gif width=13 height=13></td>" );
		document.write("                  <td><a href=http://mail.sina.com.cn>进入我的邮箱</a></td>" );
		document.write("                </tr>" );
		document.write("            </table></td>" );
		document.write("          </tr>" );
	}
	document.write("            </table></td>" );
	document.write("          </tr>" );
	document.write("          <tr>" );
	document.write("            <td align=center>" );
	document.write("    <table width=100%  border=0 cellspacing=2 cellpadding=0>" );
	document.write("      <tr>" );
	document.write("        <td width=13>&nbsp;</td>" );
	document.write("        <td><input type=\"image\" src=http://unipro.sina.com.cn/images/txz_button02.gif width=65 height=19 onClick=\"javascript:unipro_UniProLogout();window.location='" + locationaddress + "';\"></td>" );
	document.write("      </tr>" );
	document.write("    </table>    </td>" );
	document.write("          </tr>          <tr>" );
	document.write("            <td height=2 background=http://unipro.sina.com.cn/images/bg02.gif></td>" );
	document.write("          </tr>" );
	document.write("          <tr>" );
	document.write("            <td align=center> 为了保证您的资料的安全性 <br>" );
	document.write("              请务必在离开的时候点击 “安全退出”             </td>" );
	document.write("          </tr>" );
	document.write("        </table>" );
	document.write("		</td>" );
	document.write("      </tr>" );
	document.write("    </table>" );
}

/*
	print_stand_unipro_head()
	功能:输出提示输入手机,手机密码登录信息,彩信使用
*/
function print_stand_mobile_head()
{
	document.write("						<table width=145 border=0 cellpadding=0 cellspacing=0>");
	document.write("                          <form name=\"fm\" method=post action=http://mms.sina.com.cn/cgi-bin/mms/login.cgi>");
	document.write("                            <tr> ");
	document.write("                              <td width=60 align=center height=23> <div align=\"center\"><font color=#212121>手机号：</font></div></td>");
	document.write("                              <td width=94><input type=text name=mobile style=\"width:82px;height:16px;border:#333333 1px solid\"></td>");
	document.write("                            </tr>");
	document.write("                            <tr> ");
	document.write("                              <td height=\"23\" align=center> <div align=\"center\"><font color=#212121>密　码：</font></div></td>");
	document.write("                              <td><input type=password name=passwd style=\"width:82px;height:16px;border:#333333 1px solid\"></td>");
	document.write("                            </tr>");
	document.write("                            <tr> ");
	document.write("                              <td height=6 colspan=2 align=center><img src=http://image2.sina.com.cn/sms/mms/newmms/listpage/xincaia22.gif></td>");
	document.write("                            </tr>");
	document.write("                            <tr> ");
	document.write("                              <td height=\"18\" colspan=2 align=center><a href=http://mms.sina.com.cn/register.html class=a03 target=_blank><u>注册</u></a> ");
	document.write("                                <a href=http://mms.sina.com.cn/forgetpwd.html class=a03 target=_blank><u>忘记密码</u></a> ");
	document.write("                                <input name=\"image\" type=image src=http://image2.sina.com.cn/sms/mms/newmms/listpage/xincaia23.gif align=absmiddle width=45 height=18 border=0></td>");
	document.write("                            </tr>");
	document.write("                          </form>");
	document.write("                        </table>");
}		


/*
	print_stand_unipro_head5()
	功能:输出提示登录信息,横条,正在使用,用于会员中心。
*/
function print_stand_unipro_head5()
{
	document.write("<table width=750 height=60 border=0 cellpadding=0 cellspacing=0>");
	document.write("	<tr>");
	document.write("	  <td valign=bottom><a href=http://unipro.sina.com.cn><img src=http://image2.sina.com.cn/IT/unipro/41/logo01.gif width=120 height=40 border=0></a></td>");
	document.write("	  <td align=right valign=bottom>");
	document.write("	    <table width=100%  border=0 cellspacing=3 cellpadding=0>");
	document.write("	      <tr>");
	document.write("	        <td align=right valign=bottom><a class=a00 href=http://unipro.sina.com.cn target=_blank>会员中心</a>|<a class=a00 href=http://sinapay.sina.com.cn/other/taole.html target=_blank>消费中心</a>|<a class=a00 href=http://points.sina.com.cn/ target=_blank><font color=red>通行币积分</font></a>|<a href=http://sinapay.sina.com.cn class=a00 target=_blank>通行币帐户</a>|<a class=a00 href=http://mail.sina.com.cn/freemail/ target=_blank>免费邮箱</a>|<a class=a00 href=http://vip.sina.com.cn target=_blank>VIP邮箱</a>|<a class=a00 href=http://igameport.sina.com.cn target=_blank>游戏总动园</a>|<a class=a00 href=http://unipro.sina.com.cn/help.html target=_blank>帮助中心</a>|<a class=a00 href=http://www.sina.com.cn target=_blank>新浪首页</a></td>");
	document.write("	        <td align=center><input type=image src=http://unipro.sina.com.cn/images/001A.gif width=65 height=19></td>");
	document.write("	      </tr>");
	document.write("	    </table>");
	document.write("	  </td>");
	document.write("	</tr>");
	document.write("</table>");
}

/*
	print_stand_unipro_welcome5(locationaddress)
	参数:locationaddress
			locationaddress为点击安全退出时localtion的地址
	功能:输出欢迎信息,横条,正在使用
*/
function print_stand_unipro_welcome5(locationaddress)
{
	document.write("<table width=750 height=60 border=0 cellpadding=0 cellspacing=0>");
	document.write("	<tr>");
	document.write("	  <td valign=bottom><a href=http://unipro.sina.com.cn><img src=http://image2.sina.com.cn/IT/unipro/41/logo01.gif width=120 height=40 border=0></a></td>");
	document.write("	  <td align=right valign=bottom>");
	document.write("	    <table width=100%  border=0 cellspacing=3 cellpadding=0>");
	document.write("	      <tr>");
	document.write("	        <td align=right valign=bottom><a class=a00 href=http://unipro.sina.com.cn target=_blank>会员中心</a>|<a class=a00 href=http://sinapay.sina.com.cn/other/taole.html target=_blank>消费中心</a>|<a class=a00 href=http://points.sina.com.cn/ target=_blank><font color=red>通行币积分</font></a>|<a href=http://sinapay.sina.com.cn class=a00 target=_blank>通行币帐户</a>|<a class=a00 href=http://mail.sina.com.cn/freemail/ target=_blank>免费邮箱</a>|<a class=a00 href=http://vip.sina.com.cn target=_blank>VIP邮箱</a>|<a class=a00 href=http://igameport.sina.com.cn target=_blank>游戏总动园</a>|<a class=a00 href=http://unipro.sina.com.cn/help.html target=_blank>帮助中心</a>|<a class=a00 href=http://www.sina.com.cn target=_blank>新浪首页</a></td>");
	document.write("	        <td align=center><input type=image src=http://unipro.sina.com.cn/images/001B.gif width=65 height=19 onClick=\"javascript:unipro_UniProLogout();window.location='" + locationaddress + "';\"></td>");
	document.write("	      </tr>");
	document.write("	    </table>");
	document.write("	  </td>");
	document.write("	</tr>");
	document.write("</table>");
}

/*
	print_stand_unipro_head6()
	功能:输出用户名,密码,验证码登录信息,正在使用
*/
function print_stand_unipro_head6()
{
	document.write("<table width=245  border=0 cellpadding=0 cellspacing=0 bgcolor=#56b4e3 id=tb_login>");
	document.write("  <tr>");
	document.write("    <td width=8 height=8 background=/images/mcenter_001.gif></td>");
	document.write("    <td></td>");
	document.write("    <td width=8 background=/images/mcenter_002.gif></td>");
	document.write("  </tr>");
	document.write("  <tr>");
	document.write("    <td></td>");
	document.write("    <td>");
	document.write("      <table width=100%  border=0 cellspacing=2 cellpadding=0>");
	document.write("    <form name=\"unipro_head_login_form\" method=\"post\" action=\"/test/checkLogin\">");
	document.write("        <tr>");
	document.write("          <td width=55 height=22 class=txt01>·登录名</td>");
	document.write("          <td width=90><input name=\"userid\" type=text value=\"会员名/手机/UC号\" tabindex=1 onFocus=\"if(this.value=='会员名/手机/UC号') this.value=''\" onBlur=\"if(this.value=='') this.value='会员名/手机/UC号'\" size=15 class=input01></td>");
	document.write("          <td rowspan=2 align=center><input  onclick=\"return unipro_checkdata();\" name=image2 type=image src=http://unipro.sina.com.cn/images/mcenter_005.gif width=50 height=40  tabindex=4></td>");
	document.write("        </tr>");
	document.write("        <tr>");
	document.write("          <td height=22 class=txt01>·密　码</td>");
	document.write("          <td width=90><input name=\"passcode\" type=password size=15 class=input01 tabindex=2></td>");
	document.write("        </tr>");
	document.write("        <tr>");
	document.write("          <td class=txt01>·验证码</td><td width=90><input value=\"请输入右边数字\" name=\"confcode\" type=text onFocus=\"if(this.value=='请输入右边数字') this.value=''\" onBlur=\"if(this.value=='') this.value='请输入右边数字'\" size=15 class=input01 tabindex=3></td>");
	document.write("          <td align=center>");
	var pp= Math.round((Math.random()) * 100000000);
	document.write("		  <img src='http://unipro.sina.com.cn/cgi-bin/imgrans?r=" + pp + "' width=60 height=20 border=1>");
	document.write("		  </td>");
	document.write("        </tr>");
	document.write("        <tr>");
	document.write("          <td height=24 colspan=3 class=txt01 align=center> <a href=http://unipro.sina.com.cn/getpass.html class=a01 target=_blank>忘记密码</a>？　<a href=http://unipro.sina.com.cn/noconfimg.html class=a01 target=_blank>我看不到图片</a> </td>");
	document.write("        </tr>");
	document.write("        <tr>");  
	document.write("          <td colspan=3 height=1 background=http://unipro.sina.com.cn/images/mcenter_007.gif></td>");
	document.write("        </tr>");
	document.write("        <tr>");
	document.write("          <td height=24 colspan=3 class=txt01 align=center> <a href=http://unipro.sina.com.cn/help/article/15.html class=a01 target=_blank>VIP邮箱用户如何登录</a>？　<a href=http://unipro.sina.com.cn/help/article/14.html class=a01 target=_blank> 使用帮助</a> </td>");
	document.write("        </tr>");
	document.write("        <tr>");
	document.write("          <td colspan=3 align=center><a href=http://unipro.sina.com.cn/tmpl/regist_04.html target=_blank><img src=http://unipro.sina.com.cn/images/mcenter_006.gif width=104 height=28 border=0></a></td>");
	document.write("        </tr>");
	document.write("	</form>");
	document.write("      </table>");
	document.write("    </td>");
	document.write("    <td></td>");
	document.write("  </tr>");
	document.write("  <tr>");
	document.write("    <td height=8 background=http://unipro.sina.com.cn/images/mcenter_003.gif></td>");
	document.write("    <td></td>");
	document.write("    <td background=/images/mcenter_004.gif></td>");
	document.write("  </tr>");
	document.write("</table>");
}


function print_stand_unipro_welcome6()
{
	var unipro_login_nickname = getCookie( "UNIPROU" );

	if ( unipro_login_nickname != "" && unipro_login_nickname != "null" && unipro_login_nickname != null && unipro_login_nickname != "undefined" )
	{
		
		var unipro_login_uniprou = unipro_login_nickname.split( ":" );

		if (unipro_login_uniprou[0] == "1")
		{
			print_stand_unipro_welcome6_mobile();
		}
		else if (unipro_login_uniprou[0] == "2")
		{
			print_stand_unipro_welcome6_sina();
		}
		else if (unipro_login_uniprou[0] == "3")
		{
			print_stand_unipro_welcome6_vip();
		}
		else if (unipro_login_uniprou[0] == "4")
		{
			print_stand_unipro_welcome6_uc();
		}
		else if (unipro_login_uniprou[0] == "5")
		{
			print_stand_unipro_welcome6_uc();
		}
		else
		{
			alert("未知用户类型");
			//return false;
		}
	}
	else 
	{
		alert("未取到cookie值");
		//return false;
	}
}

function print_stand_unipro_welcome6_sina()
{	
	var unipro_login_nickname = getCookie( "UNIPROU" );
	var unipro_login_nick = getCookie( "nick" );
	var unipro_login_mailinfo = getCookie( "UNIPROM" );
	var unipro_login_pos = unipro_login_nickname.indexOf( ":" );
	var unipro_login_first = unipro_login_nick.indexOf( "(" );
	var unipro_login_last = unipro_login_nick.indexOf( ")" );
	var unipro_login_uniqueid = "";
	var sinapay = "0";

//add sinapay
	var unipro_login_sinapay = getCookie( "UNIPROU" );
	if ( unipro_login_sinapay != "" && unipro_login_sinapay != "null" && unipro_login_sinapay != null && unipro_login_sinapay != "undefined" )
	{
		var unipro_login_pos2 = unipro_login_sinapay.split( ":" );

		if (unipro_login_pos2[2] == "" || unipro_login_pos2[2] == "null" || unipro_login_pos2[2] == null || unipro_login_pos2[2] == "undefined")
		{
			sinapay = "0";
		//	alert("unipro_login_pos2[2]="+unipro_login_pos2[2]);
		}
		else
		{
			sinapay = unipro_login_pos2[2];
		}
		
		if ( unipro_login_pos != -1 )
		{
			unipro_login_nickname = unipro_login_pos2[1];
		}
	}
	
	var unipro_login_displayname = getCookie( "nick" );
	var unipro_login_pos3 = unipro_login_displayname.indexOf( "(" );
	if ( unipro_login_pos3 != -1 )
	{
		unipro_login_displayname = unipro_login_displayname.substr( 0, unipro_login_pos3 );
	}

/*
	if ( unipro_login_pos != -1 )
	{
		unipro_login_nickname = unipro_login_nickname.substr( unipro_login_pos+1 );
	}
*/
	if ( unipro_login_first != -1 && unipro_login_last != -1)
	{
		unipro_login_first = unipro_login_first + 1;
		unipro_login_last = unipro_login_last;
		unipro_login_uniqueid = unipro_login_nick.substring( unipro_login_first, unipro_login_last);
	}


	document.write("<table width=95%  border=0 align=center cellpadding=0 cellspacing=2 id=tb_userinfo>");
	document.write("	<tr>");
	document.write("	  <td width=18><img src=/images/mcenter_ico_01.gif width=13 height=13></td>");
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) 
	{
		document.write("	  <td class=txt041>登 录 名: "+unipro_login_nickname+"</td>");
	} 
	else 
	{
		document.write( "	  <td class=txt041>新浪过客: 您好</td>");
	}
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_06.gif width=13 height=13></td>");
	document.write("	  <td class=txt041>昵称: " +unipro_login_displayname+ " </td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_02.gif width=13 height=13></td>");

	document.write("	  <td class=txt041>会员编码: ");
	
	if ( unipro_login_uniqueid!="" && unipro_login_uniqueid!="null" && unipro_login_uniqueid!=null && unipro_login_uniqueid!="undefined" ) 
	{
		document.write(unipro_login_uniqueid+"</td>");
	} 
	else 
	{
		document.write( "未知</td>" );
	}

	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_04.gif width=13 height=13></td>");
	document.write("	  <td class=txt041>手机号码: ");
	
	var unipro_login_mobile = getMobileNum('SINA_NU');
	if ( unipro_login_mobile!="" && unipro_login_mobile!="null" && unipro_login_mobile!=null && unipro_login_mobile!="undefined"  && unipro_login_mobile!="{") 
	{
		document.write(unipro_login_mobile+"</td>");
	} 
	else 
	{
		document.write( "<img src=/images/mcenter_055.gif width=7 height=10><a href=http://unipro.sina.com.cn/popup.html target=_blank>登记手机</a><font color=red>(免费)</font></td>" );
	}
	
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	
	if ( unipro_login_mailinfo!="" && unipro_login_mailinfo!="null" && unipro_login_mailinfo!=null && unipro_login_mailinfo!="undefined" ) 
	{
		var unipro_tempstr = unipro_login_mailinfo.split(":");
		if ( unipro_tempstr[0]!="" && unipro_tempstr[0]!="null" && unipro_tempstr[0]!=null && unipro_tempstr[0]!="undefined" && unipro_tempstr[1]!="" && unipro_tempstr[1]!="null" && unipro_tempstr[1]!=null && unipro_tempstr[1]!="undefined") 
		{
			document.write("	<tr>");
			document.write("	  <td><img src=/images/mcenter_ico_03.gif width=13 height=13></td>");
			document.write("	  <td class=txt041>免费邮箱: "+unipro_tempstr[0]+"</td>");
			document.write("	</tr>");
			document.write("	<tr>");
			document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
			document.write("	</tr>");
			if (unipro_tempstr[1] > 0)
			{
				document.write("	<tr><td></td><td><table><tr height=24>");
				document.write("			<td></td>");
				document.write("			<td valign=middle> <a href=http://mail.sina.com.cn class=avip target=_blank><img src=images/newmail.gif width=121 height=20 border=0></a></td>");
				document.write("	</tr></table></td></tr>");
			}
			else 
			{
				document.write("	<tr><td></td><td><table><tr height=24>");
				document.write("			<td></td>");
				document.write("			<td valign=middle> <a href=http://mail.sina.com.cn class=avip target=_blank><img src=/images/nomail.gif width=140 height=20 border=0></a></td>");
				document.write("	</tr></table></td></tr>");
			}
		}
	}
	else
	{
		document.write("	<tr height=24>");
		document.write("	  <td valign=middle><img src=/images/mcenter_ico_03.gif width=13 height=13></td>");
		document.write("	  <td class=txt041 valign=middle>免费邮箱: <a href=http://mail.sina.com.cn target=_blank><img src=/images/mail1g.gif width=121 height=20 border=0 align=absmiddle></a></td>");
		document.write("	</tr>");
	}


	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_05.gif width=13 height=13></td>");
	document.write("	  <td class=txt041>通行币余额: <!-- "+sinapay+" 通行币--><img src=/images/mcenter_055.gif width=7 height=10><a href=http://sinapay.sina.com.cn target=_blank class=a04>进入</a></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=22 class=txt041></td>");
	document.write("	  <td class=txt041><a href=http://unipro.sina.com.cn/chginfo_dt.html class=a04 >修改个人信息</a>　<a href=http://unipro.sina.com.cn/chginfo_pw.html class=a04>修改密码</a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/chginfo_nk.html class=a04>修改昵称</a></td>");
	document.write("	</tr>");
	document.write("	<tr bgcolor=#EEEEEE>");
	document.write("	  <td height=1 colspan=2></td>");
	document.write("	</tr>");
	document.write("</table>");
}

function print_stand_unipro_welcome6_mobile()
{	
	var unipro_login_nickname = getCookie( "UNIPROU" );
	var unipro_login_nick = getCookie( "nick" );
	
//displayname
	var unipro_login_displayname = "";
	var unipro_login_pos3 = unipro_login_nick.indexOf( "(" );
	if ( unipro_login_pos3 != -1 )
	{
		unipro_login_displayname = unipro_login_nick;
	}

//uniqueid
	var unipro_login_uniqueid = "";
	var unipro_login_first = unipro_login_nick.indexOf( "(" );
	var unipro_login_last = unipro_login_nick.indexOf( ")" );
	if ( unipro_login_first != -1 && unipro_login_last != -1)
	{
		unipro_login_first = unipro_login_first + 1;
		unipro_login_last = unipro_login_last;
		unipro_login_uniqueid = unipro_login_nick.substring( unipro_login_first, unipro_login_last);
	}


	if ( unipro_login_nickname != "" && unipro_login_nickname != "null" && unipro_login_nickname != null && unipro_login_nickname != "undefined" )
	{
		var unipro_login_uniprou = unipro_login_nickname.split( ":" );

//nickname
		if (unipro_login_uniprou[1] != "" && unipro_login_uniprou[1] != "null" && unipro_login_uniprou[1] != null && unipro_login_uniprou[1] != "undefined")
		{
			unipro_login_nickname = unipro_login_uniprou[1];
		}

//sinapay
		var sinapay = "0";
		if (unipro_login_uniprou[2] == "" || unipro_login_uniprou[2] == "null" || unipro_login_uniprou[2] == null || unipro_login_uniprou[2] == "undefined")
		{
			sinapay = "0";
		//	alert("unipro_login_pos2[2]="+unipro_login_pos2[2]);
		}
		else
		{
			sinapay = unipro_login_uniprou[2];
		}
	}

	document.write("<table width=95%  border=0 align=center cellpadding=0 cellspacing=2 id=tb_userinfo>");
	document.write("	<tr>");
	document.write("	  <td width=18><img src=/images/mcenter_ico_01.gif width=13 height=13></td>");
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) 
	{
		document.write("	  <td class=txt041>登 录 名: "+unipro_login_nickname+"</td>");
	} 
	else 
	{
		document.write( "	  <td class=txt041>新浪过客: 您好</td>");
	}
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_06.gif width=13 height=13></td>");
	document.write("	  <td class=txt041>昵称: " +unipro_login_displayname+ " </td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_02.gif width=13 height=13></td>");

	document.write("	  <td class=txt041>会员编码: ");
	
	if ( unipro_login_uniqueid!="" && unipro_login_uniqueid!="null" && unipro_login_uniqueid!=null && unipro_login_uniqueid!="undefined" ) 
	{
		document.write(unipro_login_uniqueid+"</td>");
	} 
	else 
	{
		document.write( "未知</td>" );
	}

	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_04.gif width=13 height=13></td>");
	document.write("	  <td class=txt041>手机号码: ");
	
	var unipro_login_mobile = getMobileNum('SINA_NU');
	if ( unipro_login_mobile!="" && unipro_login_mobile!="null" && unipro_login_mobile!=null && unipro_login_mobile!="undefined"  && unipro_login_mobile!="{") 
	{
		document.write(unipro_login_mobile+"<img src=/images/mcenter_055.gif width=7 height=10></td>");
	} 
	else 
	{
		document.write( "<img src=/images/mcenter_055.gif width=7 height=10><a href=http://unipro.sina.com.cn/popup.html target=_blank>登记手机</a><font color=red>(免费)</font></td>" );
	}
	
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_05.gif width=13 height=13></td>");
	document.write("	  <td class=txt041>通行币余额: <!-- "+sinapay+" 通行币--><img src=/images/mcenter_055.gif width=7 height=10><a href=http://sinapay.sina.com.cn target=_blank class=a04>进入</a></td>");
	document.write("	</tr>");
  	document.write("	<tr>");
  	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
  	document.write("	</tr>");
  	document.write("	<tr>");
  	document.write("	  <td height=22 class=txt041></td>");
  	document.write("	  <td class=txt041><a href=http://sms.sina.com.cn/cgi-bin/sms/regdatafm.cgi  target=_blank class=a04 >修改个人信息</a>　<a href=http://sms.sina.com.cn/cgi-bin/sms/chgpwd.cgi  target=_blank class=a04>修改密码</a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/chginfo_nk.html class=a04>修改昵称</a></td>");
  	document.write("	</tr>");
	document.write("	<tr bgcolor=#EEEEEE>");
	document.write("	  <td height=1 colspan=2></td>");
	document.write("	</tr>");
	document.write("</table>");
}

function print_stand_unipro_welcome6_vip()
{	
	var unipro_login_nickname = getCookie( "UNIPROU" );
	var unipro_login_nick = getCookie( "nick" );
		
//displayname
	var unipro_login_displayname = "";
	var unipro_login_pos3 = unipro_login_nick.indexOf( "(" );
	if ( unipro_login_pos3 != -1 )
	{
		unipro_login_displayname = unipro_login_nick;
	}

//uniqueid
	var unipro_login_uniqueid = "";
	var unipro_login_first = unipro_login_nick.indexOf( "(" );
	var unipro_login_last = unipro_login_nick.indexOf( ")" );
	if ( unipro_login_first != -1 && unipro_login_last != -1)
	{
		unipro_login_first = unipro_login_first + 1;
		unipro_login_last = unipro_login_last;
		unipro_login_uniqueid = unipro_login_nick.substring( unipro_login_first, unipro_login_last);
	}


	if ( unipro_login_nickname != "" && unipro_login_nickname != "null" && unipro_login_nickname != null && unipro_login_nickname != "undefined" )
	{
		var unipro_login_uniprou = unipro_login_nickname.split( ":" );

//nickname
		if (unipro_login_uniprou[1] != "" && unipro_login_uniprou[1] != "null" && unipro_login_uniprou[1] != null && unipro_login_uniprou[1] != "undefined")


		{
			unipro_login_nickname = unipro_login_uniprou[1];
		}

//sinapay
		var sinapay = "0";
		if (unipro_login_uniprou[2] == "" || unipro_login_uniprou[2] == "null" || unipro_login_uniprou[2] == null || unipro_login_uniprou[2] == "undefined")
		{
			sinapay = "0";
		//	alert("unipro_login_pos2[2]="+unipro_login_pos2[2]);
		}
		else
		{
			sinapay = unipro_login_uniprou[2];
		}
	}

	var unipro_login_mailinfo = getCookie( "UNIPROM" );
	
	document.write("<table width=95%  border=0 align=center cellpadding=0 cellspacing=2 id=tb_userinfo>");
	document.write("	<tr>");
	document.write("	  <td width=18><img src=/images/mcenter_ico_01.gif width=13 height=13></td>");
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) 
	{
		document.write("	  <td class=txt041>会 员 名: "+unipro_login_nickname+"</td>");
	} 
	else 
	{
		document.write( "	  <td class=txt041>新浪过客: 您好</td>");
	}
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_06.gif width=13 height=13></td>");
	document.write("	  <td class=txt041>昵称: " +unipro_login_displayname+ " </td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_02.gif width=13 height=13></td>");

	document.write("	  <td class=txt041>会员编码: ");
	
	if ( unipro_login_uniqueid!="" && unipro_login_uniqueid!="null" && unipro_login_uniqueid!=null && unipro_login_uniqueid!="undefined" ) 
	{
		document.write(unipro_login_uniqueid+"</td>");
	} 
	else 
	{
		document.write( "未知</td>" );
	}

	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_04.gif width=13 height=13></td>");
	document.write("	  <td class=txt041>手机号码: ");
	
	var unipro_login_mobile = getMobileNum('SINA_NU');
	if ( unipro_login_mobile!="" && unipro_login_mobile!="null" && unipro_login_mobile!=null && unipro_login_mobile!="undefined"  && unipro_login_mobile!="{") 
	{
		document.write(unipro_login_mobile+"</td>");
	} 
	else 
	{
		document.write( "<img src=/images/mcenter_055.gif width=7 height=10><a href=http://unipro.sina.com.cn/popup.html target=_blank>登记手机</a><font color=red>(免费)</font></td>" );
	}
	
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	
	if ( unipro_login_mailinfo!="" && unipro_login_mailinfo!="null" && unipro_login_mailinfo!=null && unipro_login_mailinfo!="undefined" ) 
	{
		var unipro_tempstr = unipro_login_mailinfo.split(":");
		if ( unipro_tempstr[0]!="" && unipro_tempstr[0]!="null" && unipro_tempstr[0]!=null && unipro_tempstr[0]!="undefined" && unipro_tempstr[1]!="" && unipro_tempstr[1]!="null" && unipro_tempstr[1]!=null && unipro_tempstr[1]!="undefined") 
		{
			document.write("	<tr>");
			document.write("	  <td><img src=/images/mcenter_ico_03.gif width=13 height=13></td>");
			document.write("	  <td class=txt041>VIP 邮箱: "+unipro_tempstr[0]+"</td>");
			document.write("	</tr>");
			document.write("	<tr>");
			document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
			document.write("	</tr>");
			if (unipro_tempstr[1] > 0)
			{
				document.write("	<tr><td></td><td><table><tr>");
				document.write("			<td>您有</td>");
				document.write("			<td><img src=/images/mcenter_ico_mail.gif width=13 height=13></td>");
				document.write("			<td> <a href=http://mail.sina.com.cn class=avip target=_blank>新邮件</a></td>");
				document.write("	</tr></table></td></tr>");
			}
			else 
			{
				document.write("	<tr><td></td><td><table><tr>");
				document.write("			<td>您没有</td>");
				document.write("			<td><img src=/images/mcenter_ico_mail1.gif width=13 height=13></td>");
				document.write("			<td> <a href=http://mail.sina.com.cn class=avip target=_blank>新邮件</td>");
				document.write("	</tr></table></td></tr>");
			}
		}
	}
	else
	{
		document.write("	<tr>");
		document.write("	  <td><img src=/images/mcenter_ico_03.gif width=13 height=13></td>");
		document.write("	  <td class=txt041>VIP 邮箱: <img src=/images/mcenter_055.gif width=7 height=10><a href=http://vip.sina.com.cn target=_blank>进入邮箱</a></td>");
		document.write("	</tr>");
	}



	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_05.gif width=13 height=13></td>");
	document.write("	  <td class=txt041>通行币余额: <!--"+sinapay+" 通行币--> <img src=/images/mcenter_055.gif width=7 height=10><a href=http://sinapay.sina.com.cn target=_blank class=a04>进入</a></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");

//	document.write("	<tr>");
//	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
//	document.write("	</tr>");
//	document.write("	<tr>");
//	document.write("	  <td height=22 class=txt041></td>");
//	document.write("	  <td class=txt041><a href=http://unipro.sina.com.cn/chginfo_dt.html class=a04 >修改个人信息</a>　<a href=http://unipro.sina.com.cn/chginfo_pw.html class=a04>修改密码</a>　<a href=http://unipro.sina.com.cn/chginfo_nk.html class=a04>修改昵称</a></td>");
//	document.write("	</tr>");
	document.write("	<tr bgcolor=#EEEEEE>");
	document.write("	  <td height=1 colspan=2></td>");
	document.write("	</tr>");
	document.write("</table>");
}

function print_stand_unipro_welcome6_uc()
{
	var unipro_login_nickname = getCookie( "UNIPROU" );
	var unipro_login_nick = getCookie( "nick" );

	//displayname
	var unipro_login_displayname = "";
	var unipro_login_pos3 = unipro_login_nick.indexOf( "(" );
	if ( unipro_login_pos3 != -1 )
	{
		unipro_login_displayname = unipro_login_nick;
	}

	//uniqueid
	var unipro_login_uniqueid = "";
	var unipro_login_first = unipro_login_nick.indexOf( "(" );
	var unipro_login_last = unipro_login_nick.indexOf( ")" );
	if ( unipro_login_first != -1 && unipro_login_last != -1)
	{
		unipro_login_first = unipro_login_first + 1;
		unipro_login_last = unipro_login_last;
		unipro_login_uniqueid = unipro_login_nick.substring( unipro_login_first, unipro_login_last);
	}

	if ( unipro_login_nickname != "" && unipro_login_nickname != "null" && unipro_login_nickname != null && unipro_login_nickname != "undefined" )
	{
		var unipro_login_uniprou = unipro_login_nickname.split( ":" );
		
		//nickname
		if (unipro_login_uniprou[1] != "" && unipro_login_uniprou[1] != "null" && unipro_login_uniprou[1] != null && unipro_login_uniprou[1] != "undefined")
		{
			unipro_login_nickname = unipro_login_uniprou[1];
		}
	}

	document.write("<table width=95%  border=0 align=center cellpadding=0 cellspacing=2 id=tb_userinfo>");
	document.write("	<tr>");
	document.write("	  <td width=18><img src=/images/mcenter_ico_01.gif width=13 height=13></td>");
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) 
	{
		document.write("	  <td class=txt041>登 录 名: "+unipro_login_nickname+"</td>");
	} 
	else 
	{
		document.write( "	  <td class=txt041>新浪过客: 您好</td>");
	}
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_06.gif width=13 height=13></td>");
	document.write("	  <td class=txt041>昵称: " +unipro_login_displayname+ " </td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
	document.write("	</tr>");
	document.write("	<tr>");
	document.write("	  <td><img src=/images/mcenter_ico_02.gif width=13 height=13></td>");

	document.write("	  <td class=txt041>会员编码: ");
	
	if ( unipro_login_uniqueid!="" && unipro_login_uniqueid!="null" && unipro_login_uniqueid!=null && unipro_login_uniqueid!="undefined" ) 
	{
		document.write(unipro_login_uniqueid+"</td>");
	} 
	else 
	{
		document.write( "未知</td>" );
	}

	document.write("	</tr>");
  	document.write("	<tr>");
  	document.write("	  <td height=1 colspan=2 background=/images/mcenter_032.gif></td>");
  	document.write("	</tr>");
  	document.write("	<tr>");
  	document.write("	  <td height=22 class=txt041></td>");
  	document.write("	  <td class=txt041><img src=/images/mcenter_055.gif width=7 height=10><a href=http://service.51uc.com/user_info/show_user_info_base.shtml class=a04 target=_blank>修改昵称</a>　<a href=http://service.51uc.com/ class=a04 target=_blank >修改个人信息</a>　<a href=http://service.51uc.com/pwd_protect/mo.shtml?pwd_protect.html class=a04 target=_blank>密码保护</a> </td>");
  	document.write("	</tr>");
	document.write("	<tr bgcolor=#EEEEEE>");
	document.write("	  <td height=1 colspan=2></td>");
	document.write("	</tr>");
	document.write("</table>");
}
/*
	print_stand_unipro_head7()
	功能:输出提示登录信息,横条,正在使用
*/
function print_stand_unipro_head7()
{
	document.write("<table width=750 height=20 border=0 cellpadding=0 cellspacing=0>");
	document.write("	<tr>");
	document.write("	  <td valign=bottom><a href=http://unipro.sina.com.cn ><b>SINA 通行证</b></a></td>");
	document.write("	  <td align=right valign=bottom>");
	document.write("	    <table width=100%  border=0 cellspacing=3 cellpadding=0>");
	document.write("	      <tr>");
	document.write("	        <td align=right valign=bottom><a class=a00 href=http://unipro.sina.com.cn target=_blank>会员中心</a>|<a class=a00 href=http://sinapay.sina.com.cn/other/taole.html target=_blank>消费中心</a>|<a class=a00 href=http://points.sina.com.cn/ target=_blank><font color=red>通行币积分</font></a>|<a href=http://sinapay.sina.com.cn class=a00 target=_blank>通行币帐户</a>|<a class=a00 href=http://mail.sina.com.cn/freemail/ target=_blank>免费邮箱</a>|<a class=a00 href=http://vip.sina.com.cn target=_blank>VIP邮箱</a>|<a class=a00 href=http://igameport.sina.com.cn target=_blank>游戏总动园</a>|<a class=a00 href=http://unipro.sina.com.cn/help.html target=_blank>帮助中心</a>|<a class=a00 href=http://www.sina.com.cn target=_blank>新浪首页</a></td>");
	document.write("	        <td align=center><a href=http://unipro.sina.com.cn/><img src=http://unipro.sina.com.cn/images/001A.gif width=65 height=19 border=0></a></td>");
	document.write("	      </tr>");
	document.write("	    </table>");
	document.write("	  </td>");
	document.write("	</tr>");
	document.write("</table>");
}
/*
	print_stand_unipro_welcome7(locationaddress)
	参数:locationaddress
			locationaddress为点击安全退出时localtion的地址
	功能:输出欢迎信息,横条,正在使用
*/
function print_stand_unipro_welcome7(locationaddress)
{
	document.write("<table width=750 height=20 border=0 cellpadding=0 cellspacing=0>");
	document.write("	<tr>");
	document.write("	  <td valign=bottom><a href=http://unipro.sina.com.cn ><b>SINA 通行证</b></a></td>");
	document.write("	  <td align=right valign=bottom>");
	document.write("	    <table width=100%  border=0 cellspacing=3 cellpadding=0>");
	document.write("	      <tr>");
	document.write("	        <td align=right valign=bottom><a class=a00 href=http://unipro.sina.com.cn target=_blank>会员中心</a>|<a class=a00 href=http://sinapay.sina.com.cn/other/taole.html target=_blank>消费中心</a>|<a class=a00 href=http://points.sina.com.cn/ target=_blank><font color=red>通行币积分</font></a>|<a href=http://sinapay.sina.com.cn class=a00 target=_blank>通行币帐户</a>|<a class=a00 href=http://mail.sina.com.cn/freemail/ target=_blank>免费邮箱</a>|<a class=a00 href=http://vip.sina.com.cn target=_blank>VIP邮箱</a>|<a class=a00 href=http://igameport.sina.com.cn target=_blank>游戏总动园</a>|<a class=a00 href=http://unipro.sina.com.cn/help.html target=_blank>帮助中心</a>|<a class=a00 href=http://www.sina.com.cn target=_blank>新浪首页</a></td>");
	document.write("	        <td align=center><input type=image src=http://unipro.sina.com.cn/images/001B.gif width=65 height=19 onClick=\"javascript:unipro_UniProLogout();window.location='" + locationaddress + "';\"></td>");
	document.write("	      </tr>");
	document.write("	    </table>");
	document.write("	  </td>");
	document.write("	</tr>");
	document.write("</table>");
}


//---------------------------------------------
function print_stand_unipro_head8()
{
	document.write("<table width=260 height=175 border=0 cellpadding=0 cellspacing=0>");
	document.write("<tr><td width=1 bgcolor=#E8D54C></td>");
	document.write("	<td width=2></td>");
	document.write("	<td width=254 bgcolor=FFFCE3 valign=top>");
	document.write("		<table width=254 height= border=0 cellpadding=0 cellspacing=0>");
	document.write("    <form name=\"unipro_head_login_form\" method=\"post\" action=\"/cgi-bin/unilogin.cgi\">");	
	document.write("		<tr><td width=51 align=right style=\"padding-top:5px\">登陆名</td>");
	document.write("		<td style=\"padding-left:18px;padding-top:5px\"><input name=\"userid\" type=text value=\"会员名/手机/UC号\" tabindex=1 onFocus=\"if(this.value=='会员名/手机/UC号') this.value=''\" onBlur=\"if(this.value=='') this.value='会员名/手机/UC号'\" size=13></td>");
	document.write("		<td rowspan=2 width=80><input  onclick=\"return unipro_checkdata();\" name=image2 type=image src=\"images/hyimg06.jpg\" width=\"63\" height=\"42\"></tr>");
	document.write("		<tr><td  align=right style=\"padding-top:5px\">密&nbsp;&nbsp;码</td>");
	document.write("		<td style=\"padding-left:18px;padding-top:5px\"><input name=\"passcode\" type=password size=13></td></tr>");
	document.write("		<tr><td  align=right style=\"padding-top:5px\">验证码</td>");
	document.write("		<td style=\"padding-left:18px;padding-top:5px\"><input value=\"请输入右边数字\" name=\"confcode\" type=text onFocus=\"if(this.value=='请输入右边数字') this.value=''\" onBlur=\"if(this.value=='') this.value='请输入右边数字'\"  size=13></td>");
	var pp= Math.round((Math.random()) * 100000000);
	document.write("		<td align=left style=\"padding-top:5px\"><img src='/cgi-bin/imgrans?r=" + pp + "' width=60 height=20 border=1 alt=验证码></td></tr>");
	document.write("		<tr><td height=10 colspan=3></td></tr>");
	document.write("		<tr><td colspan=3 align=center class=l15><a href=http://unipro.sina.com.cn/getpass.html  target=_blank><font color=#D27302>忘记密码</font></a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/noconfimg.html  target=_blank><font color=#D27302>看不见图片</font></a><br><a href=http://unipro.sina.com.cn/help/article/15.html target=_blank><font color=#D27302>VIP邮箱用户登陆</font></a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/help/article/14.html target=_blank><font color=#D27302>使用帮助</font></td></tr>");
	document.write("		<tr><td colspan=3 align=center style=\"padding-top:6px\"><a href=http://unipro.sina.com.cn/register.html target=_blank><img src=images/hyimg07.gif style=\"border-width:0px;width:114px;height:30px;padding-top:3px;color:#\"></a></td></tr></form>");
	document.write("		</table>");
	document.write("	</td>");
	document.write("	<td width=2></td>");
	document.write("	<td width=1 bgcolor=#E8D54C></td></tr>");
	document.write("	<tr bgcolor=#E8D54C><td colspan=5 height=1></td></tr>");
	document.write("	</table>");
}

//------------------------------------------------

function print_stand_unipro_welcome8()
{
	var unipro_login_nickname = getCookie( "UNIPROU" );

	if ( unipro_login_nickname != "" && unipro_login_nickname != "null" && unipro_login_nickname != null && unipro_login_nickname != "undefined" )
	{
		
		var unipro_login_uniprou = unipro_login_nickname.split( ":" );

		if (unipro_login_uniprou[0] == "1")
		{
			print_stand_unipro_welcome8_mobile();
		}
		else if (unipro_login_uniprou[0] == "2")
		{
			print_stand_unipro_welcome8_sina();
		}
		else if (unipro_login_uniprou[0] == "3")
		{
			print_stand_unipro_welcome8_vip();
		}
		else if (unipro_login_uniprou[0] == "4")
		{
			print_stand_unipro_welcome6_uc();
		}
		else if (unipro_login_uniprou[0] == "5")
		{
			print_stand_unipro_welcome8_uc();
		}
		else
		{
			alert("未知用户类型");
			//return false;
		}
	}
	else 
	{
		alert("未取到cookie值");
		//return false;
	}
}

function print_stand_unipro_welcome8_sina()
{
	var unipro_login_nickname = getCookie( "UNIPROU" );
	var unipro_login_nick = getCookie( "nick" );
	var unipro_login_mailinfo = getCookie( "UNIPROM" );
	var unipro_login_pos = unipro_login_nickname.indexOf( ":" );
	var unipro_login_first = unipro_login_nick.indexOf( "(" );
	var unipro_login_last = unipro_login_nick.indexOf( ")" );
	var unipro_login_uniqueid = "";
	var sinapay = "0";

//add sinapay
	var unipro_login_sinapay = getCookie( "UNIPROU" );
	if ( unipro_login_sinapay != "" && unipro_login_sinapay != "null" && unipro_login_sinapay != null && unipro_login_sinapay != "undefined" )
	{
		var unipro_login_pos2 = unipro_login_sinapay.split( ":" );

		if (unipro_login_pos2[2] == "" || unipro_login_pos2[2] == "null" || unipro_login_pos2[2] == null || unipro_login_pos2[2] == "undefined")
		{
			sinapay = "0";
		//	alert("unipro_login_pos2[2]="+unipro_login_pos2[2]);
		}
		else
		{
			sinapay = unipro_login_pos2[2];
		}
		
		if ( unipro_login_pos != -1 )
		{
			unipro_login_nickname = unipro_login_pos2[1];
		}
	}
	
	var unipro_login_displayname = getCookie( "nick" );
	var unipro_login_pos3 = unipro_login_displayname.indexOf( "(" );
	if ( unipro_login_pos3 != -1 )
	{
		unipro_login_displayname = unipro_login_displayname.substr( 0, unipro_login_pos3 );
	}

/*
	if ( unipro_login_pos != -1 )
	{
		unipro_login_nickname = unipro_login_nickname.substr( unipro_login_pos+1 );
	}
*/
	if ( unipro_login_first != -1 && unipro_login_last != -1)
	{
		unipro_login_first = unipro_login_first + 1;
		unipro_login_last = unipro_login_last;
		unipro_login_uniqueid = unipro_login_nick.substring( unipro_login_first, unipro_login_last);
	}

	document.write("<table width=260 height=175 border=0 cellpadding=0 cellspacing=0>");
	document.write("	<tr><td width=1 bgcolor=#E8D54C></td>");
	document.write("	<td width=2></td>");
	document.write("	<td width=254 bgcolor=FFFCE3 valign=top>");
	document.write("		<table width=254 height= border=0 cellpadding=0 cellspacing=0>");
	document.write("		<tr class=l15><td align=right>登录名：</td>");
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) 
	{
		document.write("	  <td>"+unipro_login_nickname+"</td></tr>");
	}
	else
	{
		document.write("	  <td>新浪过客</td></tr>");
	}
	document.write("	<tr class=l15><td align=right>昵称：</td>");
	document.write("	<td>"+unipro_login_displayname+"&nbsp;&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/chginfo_nk.html  class=ann1>修改昵称</a></td></tr>");
	document.write("	<tr class=l15><td align=right>会员编码：</td>");
	if ( unipro_login_uniqueid!="" && unipro_login_uniqueid!="null" && unipro_login_uniqueid!=null && unipro_login_uniqueid!="undefined" ) 
	{
		document.write("	<td>"+unipro_login_uniqueid+"</td></tr>");
	} 
	else 
	{
		document.write("	<td>未知</td></tr>");
	}
	
	document.write("	<tr class=l15><td align=right>手机号码：</td>");
	
	var unipro_login_mobile = getMobileNum('SINA_NU');
	if ( unipro_login_mobile!="" && unipro_login_mobile!="null" && unipro_login_mobile!=null && unipro_login_mobile!="undefined"  && unipro_login_mobile!="{") 
	{
		document.write("	<td>"+unipro_login_mobile+"</td></tr>");
	}
	else
	{
		document.write("	<td><a href=http://unipro.sina.com.cn/popup.html target=_blank>登记手机</a><font color=red>(免费)</font></td>" );
	}
	document.write("	<tr class=l15><td align=right><font color=red>2G邮箱：</font></td>");
	
	if ( unipro_login_mailinfo!="" && unipro_login_mailinfo!="null" && unipro_login_mailinfo!=null && unipro_login_mailinfo!="undefined" ) 
	{
		var unipro_tempstr = unipro_login_mailinfo.split(":");
		if ( unipro_tempstr[0]!="" && unipro_tempstr[0]!="null" && unipro_tempstr[0]!=null && unipro_tempstr[0]!="undefined" && unipro_tempstr[1]!="" && unipro_tempstr[1]!="null" && unipro_tempstr[1]!=null && unipro_tempstr[1]!="undefined") 
		{
			if (unipro_tempstr[1] > 0)
			{
				document.write("	<td>"+unipro_tempstr[0]+"<a href=http://mail.sina.com.cn  target=_blank><img src=\"images/hyimg40.gif\" alt=\"\" align=absmiddle width=40 height=20 border=0></a></td></tr>");
			}
			else
			{
				document.write("	<td>"+unipro_tempstr[0]+"<a href=http://mail.sina.com.cn  target=_blank><img src=\"images/hyimg40.gif\" alt=\"\" align=absmiddle width=40 height=20 border=0></a></td></tr>");
			}
		}
	}
	else
	{
		document.write("	<td><a href=http://mail.sina.com.cn  target=_blank>获取2G免费信箱</a></td></tr>");
	}
	document.write("	<tr class=l15><td align=right>U币余额：</td>");
	document.write("	<td class=l15>"+sinapay+"&nbsp;&nbsp;<a href=\"http://sinapay.sina.com.cn/fill/fill.html\" class=ann1>U币充值</a>&nbsp;&nbsp;<a href=\"http://sinapay.sina.com.cn/other/taole.html\" class=ann1>U币消费大全</a></td></tr>");
	document.write("	<tr><td align=right class=l15>积分：</td>");
	document.write("	<td>这儿显示积分,0</td></tr>");
	document.write("	<tr class=l15><td colspan=2 align=center><a href=http://unipro.sina.com.cn/chginfo_dt.html  class=ann1>修改个人信息</a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/chginfo_pw.html  class=ann1>修改密码</a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn onclick=\"javascript:unipro_UniProLogout();\" class=ann1>安全退出</a></td></tr>");
	document.write("	<tr>");
    document.write("	</tr>");
	document.write("	</table>");
	document.write("	</td>");
	document.write("	<td width=2></td>");
	document.write("	<td width=1 bgcolor=#E8D54C></td></tr>");
	document.write("	<tr bgcolor=#E8D54C><td colspan=5 height=1></td></tr>");
	document.write("	</table>");
}

function print_stand_unipro_welcome8_mobile()
{
	var unipro_login_nickname = getCookie( "UNIPROU" );
	var unipro_login_nick = getCookie( "nick" );
	var unipro_login_mailinfo = getCookie( "UNIPROM" );
	var unipro_login_pos = unipro_login_nickname.indexOf( ":" );
	var unipro_login_first = unipro_login_nick.indexOf( "(" );
	var unipro_login_last = unipro_login_nick.indexOf( ")" );
	var unipro_login_uniqueid = "";
	var sinapay = "0";

//add sinapay
	var unipro_login_sinapay = getCookie( "UNIPROU" );
	if ( unipro_login_sinapay != "" && unipro_login_sinapay != "null" && unipro_login_sinapay != null && unipro_login_sinapay != "undefined" )
	{
		var unipro_login_pos2 = unipro_login_sinapay.split( ":" );

		if (unipro_login_pos2[2] == "" || unipro_login_pos2[2] == "null" || unipro_login_pos2[2] == null || unipro_login_pos2[2] == "undefined")
		{
			sinapay = "0";
		//	alert("unipro_login_pos2[2]="+unipro_login_pos2[2]);
		}
		else
		{
			sinapay = unipro_login_pos2[2];
		}
		
		if ( unipro_login_pos != -1 )
		{
			unipro_login_nickname = unipro_login_pos2[1];
		}
	}
	
	var unipro_login_displayname = getCookie( "nick" );
	var unipro_login_pos3 = unipro_login_displayname.indexOf( "(" );
	if ( unipro_login_pos3 != -1 )
	{
		unipro_login_displayname = unipro_login_displayname.substr( 0, unipro_login_pos3 );
	}

/*
	if ( unipro_login_pos != -1 )
	{
		unipro_login_nickname = unipro_login_nickname.substr( unipro_login_pos+1 );
	}
*/
	if ( unipro_login_first != -1 && unipro_login_last != -1)
	{
		unipro_login_first = unipro_login_first + 1;
		unipro_login_last = unipro_login_last;
		unipro_login_uniqueid = unipro_login_nick.substring( unipro_login_first, unipro_login_last);
	}

	document.write("<table width=260 height=175 border=0 cellpadding=0 cellspacing=0>");
	document.write("	<tr><td width=1 bgcolor=#E8D54C></td>");
	document.write("	<td width=2></td>");
	document.write("	<td width=254 bgcolor=FFFCE3 valign=top>");
	document.write("		<table width=254 height= border=0 cellpadding=0 cellspacing=0>");
	document.write("		<tr class=l15><td align=right>登录名：</td>");
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) 
	{
		document.write("	  <td>"+unipro_login_nickname+"</td></tr>");
	}
	else
	{
		document.write("	  <td>新浪过客</td></tr>");
	}
	document.write("	<tr class=l15><td align=right>昵称：</td>");
	document.write("	<td>"+unipro_login_displayname+"&nbsp;&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/chginfo_nk.html  class=ann1>修改昵称</a></td></tr>");
	document.write("	<tr class=l15><td align=right>会员编码：</td>");
	if ( unipro_login_uniqueid!="" && unipro_login_uniqueid!="null" && unipro_login_uniqueid!=null && unipro_login_uniqueid!="undefined" ) 
	{
		document.write("	<td>"+unipro_login_uniqueid+"</td></tr>");
	} 
	else 
	{
		document.write("	<td>未知</td></tr>");
	}
	
	document.write("	<tr class=l15><td align=right>手机号码：</td>");
	
	var unipro_login_mobile = getMobileNum('SINA_NU');
	if ( unipro_login_mobile!="" && unipro_login_mobile!="null" && unipro_login_mobile!=null && unipro_login_mobile!="undefined"  && unipro_login_mobile!="{") 
	{
		document.write("	<td>"+unipro_login_mobile+"</td></tr>");
	}
	else
	{
		document.write("	<td><a href=http://unipro.sina.com.cn/popup.html target=_blank>登记手机</a><font color=red>(免费)</font></td>" );
	}
/*
	document.write("	<tr class=l15><td align=right><font color=red>2G邮箱：</font></td>");
	
	if ( unipro_login_mailinfo!="" && unipro_login_mailinfo!="null" && unipro_login_mailinfo!=null && unipro_login_mailinfo!="undefined" ) 
	{
		var unipro_tempstr = unipro_login_mailinfo.split(":");
		if ( unipro_tempstr[0]!="" && unipro_tempstr[0]!="null" && unipro_tempstr[0]!=null && unipro_tempstr[0]!="undefined" && unipro_tempstr[1]!="" && unipro_tempstr[1]!="null" && unipro_tempstr[1]!=null && unipro_tempstr[1]!="undefined") 
		{
			if (unipro_tempstr[1] > 0)
			{
				document.write("	<td>"+unipro_tempstr[0]+"<a href=http://mail.sina.com.cn  target=_blank><img src=\"images/hyimg40.gif\" alt=\"\" align=absmiddle width=40 height=20 border=0></a></td></tr>");
			}
			else
			{
				document.write("	<td>"+unipro_tempstr[0]+"<a href=http://mail.sina.com.cn  target=_blank><img src=\"images/hyimg40.gif\" alt=\"\" align=absmiddle width=40 height=20 border=0></a></td></tr>");
			}
		}
	}
	else
	{
		document.write("	<td><a href=http://mail.sina.com.cn  target=_blank>获取2G免费信箱</a></td></tr>");
	}
*/	
	document.write("	<tr class=l15><td align=right>U币余额：</td>");
	document.write("	<td class=l15>"+sinapay+"&nbsp;&nbsp;<a href=\"http://sinapay.sina.com.cn/fill/fill.html\" class=ann1>U币充值</a>&nbsp;&nbsp;<a href=\"http://sinapay.sina.com.cn/other/taole.html\" class=ann1>U币消费大全</a></td></tr>");
	document.write("	<tr><td align=right class=l15>积分：</td>");
	document.write("	<td>这儿显示积分,0</td></tr>");
	document.write("	<tr class=l15><td colspan=2 align=center><a href=http://unipro.sina.com.cn/chginfo_dt.html  class=ann1>修改个人信息</a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/chginfo_pw.html  class=ann1>修改密码</a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn onclick=\"javascript:unipro_UniProLogout();\" class=ann1>安全退出</a></td></tr>");
	document.write("	<tr>");
    document.write("	</tr>");
	document.write("	</table>");
	document.write("	</td>");
	document.write("	<td width=2></td>");
	document.write("	<td width=1 bgcolor=#E8D54C></td></tr>");
	document.write("	<tr bgcolor=#E8D54C><td colspan=5 height=1></td></tr>");
	document.write("	</table>");
}

//--------------------------------------

function print_stand_unipro_welcome8_vip()
{
	var unipro_login_nickname = getCookie( "UNIPROU" );
	var unipro_login_nick = getCookie( "nick" );
		
//displayname
	var unipro_login_displayname = "";
	var unipro_login_pos3 = unipro_login_nick.indexOf( "(" );
	if ( unipro_login_pos3 != -1 )
	{
		unipro_login_displayname = unipro_login_nick;
	}

//uniqueid
	var unipro_login_uniqueid = "";
	var unipro_login_first = unipro_login_nick.indexOf( "(" );
	var unipro_login_last = unipro_login_nick.indexOf( ")" );
	if ( unipro_login_first != -1 && unipro_login_last != -1)
	{
		unipro_login_first = unipro_login_first + 1;
		unipro_login_last = unipro_login_last;
		unipro_login_uniqueid = unipro_login_nick.substring( unipro_login_first, unipro_login_last);
	}


	if ( unipro_login_nickname != "" && unipro_login_nickname != "null" && unipro_login_nickname != null && unipro_login_nickname != "undefined" )
	{
		var unipro_login_uniprou = unipro_login_nickname.split( ":" );

//nickname
		if (unipro_login_uniprou[1] != "" && unipro_login_uniprou[1] != "null" && unipro_login_uniprou[1] != null && unipro_login_uniprou[1] != "undefined")


		{
			unipro_login_nickname = unipro_login_uniprou[1];
		}

//sinapay
		var sinapay = "0";
		if (unipro_login_uniprou[2] == "" || unipro_login_uniprou[2] == "null" || unipro_login_uniprou[2] == null || unipro_login_uniprou[2] == "undefined")
		{
			sinapay = "0";
		//	alert("unipro_login_pos2[2]="+unipro_login_pos2[2]);
		}
		else
		{
			sinapay = unipro_login_uniprou[2];
		}
	}

	var unipro_login_mailinfo = getCookie( "UNIPROM" );

	document.write("<table width=260 height=175 border=0 cellpadding=0 cellspacing=0>");
	document.write("	<tr><td width=1 bgcolor=#E8D54C></td>");
	document.write("	<td width=2></td>");
	document.write("	<td width=254 bgcolor=FFFCE3 valign=top>");
	document.write("		<table width=254 height= border=0 cellpadding=0 cellspacing=0>");
	document.write("		<tr class=l15><td align=right>登录名：</td>");
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) 
	{
		document.write("	  <td>"+unipro_login_nickname+"</td></tr>");
	}
	else
	{
		document.write("	  <td>新浪过客</td></tr>");
	}
	document.write("	<tr class=l15><td align=right>昵称：</td>");
	document.write("	<td>"+unipro_login_displayname+"&nbsp;&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/chginfo_nk.html  class=ann1>修改昵称</a></td></tr>");
	document.write("	<tr class=l15><td align=right>会员编码：</td>");
	
	if ( unipro_login_uniqueid!="" && unipro_login_uniqueid!="null" && unipro_login_uniqueid!=null && unipro_login_uniqueid!="undefined" ) 
	{
		document.write("	<td>"+unipro_login_uniqueid+"</td></tr>");
	} 
	else 
	{
		document.write("	<td>未知</td></tr>");
	}
	
	document.write("	<tr class=l15><td align=right>手机号码：</td>");
	
	var unipro_login_mobile = getMobileNum('SINA_NU');
	if ( unipro_login_mobile!="" && unipro_login_mobile!="null" && unipro_login_mobile!=null && unipro_login_mobile!="undefined"  && unipro_login_mobile!="{") 
	{
		document.write("	<td>"+unipro_login_mobile+"</td></tr>");
	}
	else
	{
		document.write("	<td><a href=http://unipro.sina.com.cn/popup.html target=_blank>登记手机</a><font color=red>(免费)</font></td>" );
	}

	document.write("	<tr class=l15><td align=right><font color=red>VIP邮箱：</font></td>");
	
	if ( unipro_login_mailinfo!="" && unipro_login_mailinfo!="null" && unipro_login_mailinfo!=null && unipro_login_mailinfo!="undefined" ) 
	{
		var unipro_tempstr = unipro_login_mailinfo.split(":");
		if ( unipro_tempstr[0]!="" && unipro_tempstr[0]!="null" && unipro_tempstr[0]!=null && unipro_tempstr[0]!="undefined" && unipro_tempstr[1]!="" && unipro_tempstr[1]!="null" && unipro_tempstr[1]!=null && unipro_tempstr[1]!="undefined") 
		{
			if (unipro_tempstr[1] > 0)
			{
				document.write("	<td>"+unipro_tempstr[0]+"<a href=http://mail.sina.com.cn  target=_blank><img src=\"images/hyimg40.gif\" alt=\"\" align=absmiddle width=40 height=20 border=0></a></td></tr>");
			}
			else
			{
				document.write("	<td>"+unipro_tempstr[0]+"<a href=http://mail.sina.com.cn  target=_blank><img src=\"images/hyimg40.gif\" alt=\"\" align=absmiddle width=40 height=20 border=0></a></td></tr>");
			}
		}
	}
	else
	{
		document.write("	<td><a href=http://mail.sina.com.cn  target=_blank>获取2G免费信箱</a></td></tr>");
	}
	
	document.write("	<tr class=l15><td align=right>U币余额：</td>");
	document.write("	<td class=l15>"+sinapay+"&nbsp;&nbsp;<a href=\"http://sinapay.sina.com.cn/fill/fill.html\" class=ann1>U币充值</a>&nbsp;&nbsp;<a href=\"http://sinapay.sina.com.cn/other/taole.html\" class=ann1>U币消费大全</a></td></tr>");
	document.write("	<tr><td align=right class=l15>积分：</td>");
	document.write("	<td>这儿显示积分,0</td></tr>");
	document.write("	<tr class=l15><td colspan=2 align=center><a href=http://unipro.sina.com.cn/chginfo_dt.html  class=ann1>修改个人信息</a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/chginfo_pw.html  class=ann1>修改密码</a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn onclick=\"javascript:unipro_UniProLogout();\" class=ann1>安全退出</a></td></tr>");
	document.write("	<tr>");
  document.write("	</tr>");
	document.write("	</table>");
	document.write("	</td>");
	document.write("	<td width=2></td>");
	document.write("	<td width=1 bgcolor=#E8D54C></td></tr>");
	document.write("	<tr bgcolor=#E8D54C><td colspan=5 height=1></td></tr>");
	document.write("	</table>");
}

//------------------------------------------------

function print_stand_unipro_welcome8_uc()
{
	var unipro_login_nickname = getCookie( "UNIPROU" );
	var unipro_login_nick = getCookie( "nick" );

	//displayname
	var unipro_login_displayname = "";
	var unipro_login_pos3 = unipro_login_nick.indexOf( "(" );
	if ( unipro_login_pos3 != -1 )
	{
		unipro_login_displayname = unipro_login_nick;
	}

	//uniqueid
	var unipro_login_uniqueid = "";
	var unipro_login_first = unipro_login_nick.indexOf( "(" );
	var unipro_login_last = unipro_login_nick.indexOf( ")" );
	if ( unipro_login_first != -1 && unipro_login_last != -1)
	{
		unipro_login_first = unipro_login_first + 1;
		unipro_login_last = unipro_login_last;
		unipro_login_uniqueid = unipro_login_nick.substring( unipro_login_first, unipro_login_last);
	}

	if ( unipro_login_nickname != "" && unipro_login_nickname != "null" && unipro_login_nickname != null && unipro_login_nickname != "undefined" )
	{
		var unipro_login_uniprou = unipro_login_nickname.split( ":" );
		
		//nickname
		if (unipro_login_uniprou[1] != "" && unipro_login_uniprou[1] != "null" && unipro_login_uniprou[1] != null && unipro_login_uniprou[1] != "undefined")
		{
			unipro_login_nickname = unipro_login_uniprou[1];
		}
	}


	document.write("<table width=260 height=175 border=0 cellpadding=0 cellspacing=0>");
	document.write("	<tr><td width=1 bgcolor=#E8D54C></td>");
	document.write("	<td width=2></td>");
	document.write("	<td width=254 bgcolor=FFFCE3 valign=top>");
	document.write("		<table width=254 height= border=0 cellpadding=0 cellspacing=0>");
	document.write("		<tr class=l15><td align=right>登录名：</td>");
	if ( unipro_login_nickname!="" && unipro_login_nickname!="null" && unipro_login_nickname!=null && unipro_login_nickname!="undefined" ) 
	{
		document.write("	  <td>"+unipro_login_nickname+"</td></tr>");
	}
	else
	{
		document.write("	  <td>新浪过客</td></tr>");
	}
	document.write("	<tr class=l15><td align=right>昵称：</td>");
	document.write("	<td>"+unipro_login_displayname+"&nbsp;&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/chginfo_nk.html  class=ann1>修改昵称</a></td></tr>");
	document.write("	<tr class=l15><td align=right>会员编码：</td>");
	if ( unipro_login_uniqueid!="" && unipro_login_uniqueid!="null" && unipro_login_uniqueid!=null && unipro_login_uniqueid!="undefined" ) 
	{
		document.write("	<td>"+unipro_login_uniqueid+"</td></tr>");
	} 
	else 
	{
		document.write("	<td>未知</td></tr>");
	}
/*	
	document.write("	<tr class=l15><td align=right>手机号码：</td>");
	
	var unipro_login_mobile = getMobileNum('SINA_NU');
	if ( unipro_login_mobile!="" && unipro_login_mobile!="null" && unipro_login_mobile!=null && unipro_login_mobile!="undefined"  && unipro_login_mobile!="{") 
	{
		document.write("	<td>"+unipro_login_mobile+"</td></tr>");
	}
	else
	{
		document.write("	<td><a href=http://unipro.sina.com.cn/popup.html target=_blank>登记手机</a><font color=red>(免费)</font></td>" );
	}

	document.write("	<tr class=l15><td align=right><font color=red>2G邮箱：</font></td>");
	
	if ( unipro_login_mailinfo!="" && unipro_login_mailinfo!="null" && unipro_login_mailinfo!=null && unipro_login_mailinfo!="undefined" ) 
	{
		var unipro_tempstr = unipro_login_mailinfo.split(":");
		if ( unipro_tempstr[0]!="" && unipro_tempstr[0]!="null" && unipro_tempstr[0]!=null && unipro_tempstr[0]!="undefined" && unipro_tempstr[1]!="" && unipro_tempstr[1]!="null" && unipro_tempstr[1]!=null && unipro_tempstr[1]!="undefined") 
		{
			if (unipro_tempstr[1] > 0)
			{
				document.write("	<td>"+unipro_tempstr[0]+"<a href=http://mail.sina.com.cn  target=_blank><img src=\"images/hyimg40.gif\" alt=\"\" align=absmiddle width=40 height=20 border=0></a></td></tr>");
			}
			else
			{
				document.write("	<td>"+unipro_tempstr[0]+"<a href=http://mail.sina.com.cn  target=_blank><img src=\"images/hyimg40.gif\" alt=\"\" align=absmiddle width=40 height=20 border=0></a></td></tr>");
			}
		}
	}
	else
	{
		document.write("	<td><a href=http://mail.sina.com.cn  target=_blank>获取2G免费信箱</a></td></tr>");
	}
	
	document.write("	<tr class=l15><td align=right>U币余额：</td>");
	document.write("	<td class=l15>"+sinapay+"&nbsp;&nbsp;<a href=\"http://sinapay.sina.com.cn/fill/fill.html\" class=ann1>U币充值</a>&nbsp;&nbsp;<a href=\"http://sinapay.sina.com.cn/other/taole.html\" class=ann1>U币消费大全</a></td></tr>");
	document.write("	<tr><td align=right class=l15>积分：</td>");
	document.write("	<td>这儿显示积分,0</td></tr>");
*/
	document.write("	<tr class=l15><td colspan=2 align=center><a href=http://unipro.sina.com.cn/chginfo_dt.html  class=ann1>修改个人信息</a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn/chginfo_pw.html  class=ann1>修改密码</a>&nbsp;&nbsp;<a href=http://unipro.sina.com.cn onclick=\"javascript:unipro_UniProLogout();\" class=ann1>安全退出</a></td></tr>");
	document.write("	<tr>");
  document.write("	</tr>");
	document.write("	</table>");
	document.write("	</td>");
	document.write("	<td width=2></td>");
	document.write("	<td width=1 bgcolor=#E8D54C></td></tr>");
	document.write("	<tr bgcolor=#E8D54C><td colspan=5 height=1></td></tr>");
	document.write("	</table>");
}

//------------------------------------