﻿function createHeadTab(curIndex, type, openFlag) {
	if (typeof curIndex != "number") 
		curIndex = -1;
	if (typeof type != "number") 
		type = 0;
	if (typeof openFlag != "number")
		openFlag = 0;
	var s='';
	s+='<div class="header">';
		s+='<div class="inner">';
			s+='<h1>';
				s+='<span>QQLive</span>';
				s+='<a href="http://live.qq.com/index.html" class="hide_focus" ';
				if (openFlag ==1)
					s+= 'target="_blank"';
				else
					s+= 'target="_self"';
				s+='><img src="http://imgcache.qq.com/liveportal_v1/img/logo.png" title="QQLive live.qq.com" alt="QQLive live.qq.com" /></a>';
			s+='</h1>';
			s+='<map name="nav" id="nav">';
				s+='<div class="nav">';
				s+='<div class="nav_content">';
					s+='<a href="http://live.qq.com/index.html" ';
					if (curIndex == 1)
						s+='class="current" ';
					if (openFlag ==0)
						s+='target="_self" ';
					else if (openFlag==1)
						s+='target="_blank" ';
					else 	
						s+='target="_self" ';
					s+=' ><strong >首页</strong></a>';
					s+='<a href="http://live.qq.com/zb/index.html" ';
					if (curIndex == 2)
						s+='class="current" ';
					if (openFlag ==0)
						s+='target="_self" ';
					else if (openFlag==1)
						s+='target="_blank" ';
					else 	
						s+='target="_self" ';
					s+=' ><strong class="tl">电视台</strong></a>';
					s+='<a href="http://live.qq.com/movie/all/hot/list_1.html" ';
					if (curIndex == 3)
						s+='class="current" ';
					if (openFlag ==0)
						s+='target="_self" ';
					else if (openFlag==1)
						s+='target="_blank" ';
					else 	
						s+='target="_self" ';
					s+=' ><strong >电影</strong></a>';
					s+='<a href="http://live.qq.com/tv/all/hot/list_1.html" ';
					if (curIndex == 4)
						s+='class="current" ';
					if (openFlag ==0)
						s+='target="_self" ';
					else if (openFlag==1)
						s+='target="_blank" ';
					else 	
						s+='target="_self" ';
					s+=' ><strong class="tl">电视剧</strong></a>';
					s+='<a href="http://live.qq.com/cartoon/all/hot/list_1.html" ';
					if (curIndex == 5)
						s+='class="current" ';
					if (openFlag ==0)
						s+='target="_self" ';
					else if (openFlag==1)
						s+='target="_blank" ';
					else 	
						s+='target="_self" ';
					s+=' ><strong >动漫</strong></a>';
					s+='<a href="http://live.qq.com/variety/index.html" ';
					if (curIndex == 6)
						s+='class="current" ';
					if (openFlag ==0)
						s+='target="_self" ';
					else if (openFlag==1)
						s+='target="_blank" ';
					else 	
						s+='target="_self" ';
					s+=' ><strong >综艺</strong></a>';
					s+='<a href="http://video.qq.com/" ';
					if (curIndex == 7)
						s+='class="current" ';
					if (openFlag ==0)
						s+='target="_blank" ';
					else if (openFlag==1)
						s+='target="_blank" ';
					else 	
						s+='target="_self" ';
					s+=' class="last"><strong >播客</strong></a>';
				s+='</div>';
				s+='</div>';
			s+='</map>';
			s+='<div class="sub_nav">';
				s+='<a href="http://live.qq.com/nba/index.html" target="_blank" >NBA</a>';
				s+='<a href="http&#58;//live&#46;qq&#46;com/yc/index&#46;html" target="_blank" >英超</a>';
				s+='<a href="http&#58;//live&#46;qq&#46;com/yijia/index&#46;html" target="_blank" class="last">意甲</a>';
			s+='</div>';
			s+='<form action="#" method="post" target="srhw" class="search" name="searchform" id="searchform">';
				s+='<input type="text" id="srhtxt" value="请输入搜索关键词" />';
				s+='<button type="submit" title="搜索">搜索</button>';
				s+='<div class="keywords_list" style="display:none" id="sugselector"></div>';
			s+='</form>';
			s+='<div class="message">';
			if (type != 1){
				s+='<p class="login" style="display:none;"></p>';
				s+='<p class="online" style="display:none;"></p> | ';
			}
				s+='<p><a href="http://service.qq.com/category/QQlive.html" target="_blank" class="unline">腾讯客服</a> | <a href="http://live.qq.com/download.html" target="_blank" class="unline">下载QQLive</a></p>';
			s+='</div>';	
			s+='<p class="slogan"><a href="http://live.qq.com/nba/index.html" target="_blank"><img src="http://imgcache.qq.com/liveportal_v1/pic/top_pic.jpg" alt="用QQLive 观赏精彩NBA赛事" title="用QQLive 观赏精彩NBA赛事"/></a></p>';
		s+='</div>';
	s+='</div>';
	return s;
}