
//xmlhttp和xmldom对象
var DedeXHTTP = null;
var DedeXDOM = null;
var DedeContainer = null;
var DedeShowError = false;
var DedeShowWait = false;
var DedeErrCon = "";
var DedeErrDisplay = "下载数据失败";
var DedeWaitDisplay = "正在下载数据...";

Math.rand = function(l,u) //重写rand函数 用来取整
{
         return Math.floor((Math.random() * (u-l+1))+l);
}
var ss = Math.rand(1,3);


function $DE(id) {
	return document.getElementById(id);
}

//获取指定ID的元素
function $(eid){
	return document.getElementById(eid);
}

//gcontainer 是保存下载完成的内容的容器
//mShowError 是否提示错误信息
//DedeShowWait 是否提示等待信息
//mErrCon 服务器返回什么字符串视为错误
//mErrDisplay 发生错误时显示的信息
//mWaitDisplay 等待时提示信息
//默认调用 DedeAjax('divid',false,false,'','','')

function DedeAjax(gcontainer,mShowError,mShowWait,mErrCon,mErrDisplay,mWaitDisplay){

DedeContainer = gcontainer;
DedeShowError = mShowError;
DedeShowWait = mShowWait;
if(mErrCon!="") DedeErrCon = mErrCon;
if(mErrDisplay!="") DedeErrDisplay = mErrDisplay;
if(mWaitDisplay!="") DedeWaitDisplay = mWaitDisplay;


//post或get发送数据的键值对
this.keys = Array();
this.values = Array();
this.keyCount = -1;

//http请求头
this.rkeys = Array();
this.rvalues = Array();
this.rkeyCount = -1;

//请求头类型
this.rtype = 'text';

//初始化xmlhttp
if(window.XMLHttpRequest){//IE7, Mozilla ,Firefox 等浏览器内置该对象
   DedeXHTTP = new XMLHttpRequest();
}else if(window.ActiveXObject){//IE6、IE5
   try { DedeXHTTP = new ActiveXObject("Msxml2.XMLHTTP");} catch (e) { }
   if (DedeXHTTP == null) try { DedeXHTTP = new ActiveXObject("Microsoft.XMLHTTP");} catch (e) { }
}

DedeXHTTP.onreadystatechange = function(){
	if(DedeXHTTP.readyState == 4){
    if(DedeXHTTP.status == 200){
       if(DedeXHTTP.responseText!=DedeErrCon && DedeXHTTP.responseText!=''){
         DedeContainer.innerHTML = DedeXHTTP.responseText;
       }else{
       	 if(DedeShowError) DedeContainer.innerHTML = DedeErrDisplay;
       }
       DedeXHTTP = null;
    }else{ if(DedeShowError) DedeContainer.innerHTML = DedeErrDisplay; }
  }else{ if(DedeShowWait) DedeContainer.innerHTML = DedeWaitDisplay; }
};

//增加一个POST或GET键值对
this.AddKey = function(skey,svalue){
	this.keyCount++;
	this.keys[this.keyCount] = skey;
	this.values[this.keyCount] = escape(svalue);
};

//增加一个Http请求头键值对
this.AddHead = function(skey,svalue){
	this.rkeyCount++;
	this.rkeys[this.rkeyCount] = skey;
	this.rvalues[this.rkeyCount] = svalue;
};

//清除当前对象的哈希表参数
this.ClearSet = function(){
	this.keyCount = -1;
	this.keys = Array();
	this.values = Array();
	this.rkeyCount = -1;
	this.rkeys = Array();
	this.rvalues = Array();
};

//发送http请求头
this.SendHead = function(){
	if(this.rkeyCount!=-1){ //发送用户自行设定的请求头
  	for(;i<=this.rkeyCount;i++){
  		DedeXHTTP.setRequestHeader(this.rkeys[i],this.rvalues[i]); 
  	}
  }
　if(this.rtype=='binary'){
  	DedeXHTTP.setRequestHeader("Content-Type","multipart/form-data");
  }else{
  	DedeXHTTP.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
  }
};

//用Post方式发送数据
this.SendPost = function(purl){
	var pdata = "";
	var i=0;
	this.state = 0;
	DedeXHTTP.open("POST", purl, true); 
	this.SendHead();
  if(this.keyCount!=-1){ //post数据
  	for(;i<=this.keyCount;i++){
  		if(pdata=="") pdata = this.keys[i]+'='+this.values[i];
  		else pdata += "&"+this.keys[i]+'='+this.values[i];
  	}
  }
  DedeXHTTP.send(pdata);
};

//用GET方式发送数据
this.SendGet = function(purl){
	var gkey = "";
	var i=0;
	this.state = 0;
	if(this.keyCount!=-1){ //get参数
  	for(;i<=this.keyCount;i++){
  		if(gkey=="") gkey = this.keys[i]+'='+this.values[i];
  		else gkey += "&"+this.keys[i]+'='+this.values[i];
  	}
  	if(purl.indexOf('?')==-1) purl = purl + '?' + gkey;
  	else  purl = purl + '&' + gkey;
  }
	DedeXHTTP.open("GET", purl, true); 
	this.SendHead();
  DedeXHTTP.send(null);
};

//用GET方式发送数据，阻塞模式
this.SendGet2 = function(purl){
	var gkey = "";
	var i=0;
	this.state = 0;
	if(this.keyCount!=-1){ //get参数
  	for(;i<=this.keyCount;i++){
  		if(gkey=="") gkey = this.keys[i]+'='+this.values[i];
  		else gkey += "&"+this.keys[i]+'='+this.values[i];
  	}
  	if(purl.indexOf('?')==-1) purl = purl + '?' + gkey;
  	else  purl = purl + '&' + gkey;
  }
	DedeXHTTP.open("GET", purl, false); 
	this.SendHead();
  DedeXHTTP.send(null);
  //firefox中直接检测XHTTP状态
  this.BarrageStat();
};

//用Post方式发送数据
this.SendPost2 = function(purl){
	var pdata = "";
	var i=0;
	this.state = 0;
	DedeXHTTP.open("POST", purl, false); 
	this.SendHead();
  if(this.keyCount!=-1){ //post数据
  	for(;i<=this.keyCount;i++){
  		if(pdata=="") pdata = this.keys[i]+'='+this.values[i];
  		else pdata += "&"+this.keys[i]+'='+this.values[i];
  	}
  }
  DedeXHTTP.send(pdata);
  //firefox中直接检测XHTTP状态
  this.BarrageStat();
};


} // End Class DedeAjax

//初始化xmldom
function InitXDom(){
  if(DedeXDOM!=null) return;
  var obj = null;
  if (typeof(DOMParser) != "undefined") { // Gecko、Mozilla、Firefox
    var parser = new DOMParser();
    obj = parser.parseFromString(xmlText, "text/xml");
  } else { // IE
    try { obj = new ActiveXObject("MSXML2.DOMDocument");} catch (e) { }
    if (obj == null) try { obj = new ActiveXObject("Microsoft.XMLDOM"); } catch (e) { }
  }
  DedeXDOM = obj;
};

function getElement(aID)
{
  return (document.getElementById) ? document.getElementById(aID): document.all[aID];
}

function CheckLogin(){
var taget_obj = document.getElementById('_loginform');
//myajax = new DedeAjax(taget_obj,false,false,"","","");
//myajax.SendGet("\/member\/loginsta.php");
//myajax = null;
}


function InitAjax()
{
var ajax=false;
try {
ajax = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
ajax = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
ajax = false;
}
}
if (!ajax && typeof XMLHttpRequest!='undefined') {
ajax = new XMLHttpRequest();
}
return ajax;
}

function userLogin(){
var taget_obj = document.getElementById('_loginform');
var target_url = "/member/index_doaj.php?fmdo=login&dopost=login&userid=";

target_url += document.getElementById("userid").value;
target_url += "&pwd=";
target_url += document.getElementById("pwd").value;

var ajax = InitAjax();
ajax.open("GET", target_url, true);
ajax.onreadystatechange = function() {
	if (ajax.readyState == 4 && ajax.status == 200) {
		taget_obj.innerHTML = ajax.responseText;
	}
}
ajax.send(null);

}

function userLogout(){
var taget_obj = document.getElementById('_loginform');
var target_url = "/member/index_doaj.php?fmdo=login&dopost=exit&code=" + Math.random();
var ajax = InitAjax();
ajax.open("GET", target_url, true);
ajax.onreadystatechange = function() {
	if (ajax.readyState == 4 && ajax.status == 200) {
		myajax = new DedeAjax(taget_obj,false,false,"","","");
		myajax.SendGet("\/member\/loginsta.php");
	}
}
ajax.send(null);

}


function sendfeedback(){
var taget_obj = document.getElementById('feedbacklist');
var target_url = "/plus/feedback.php?action=send&isajax=yes";

target_url += "&userid=";
target_url += document.getElementById("username").value;
target_url += "&pwd=";
target_url += document.getElementById("pwd").value;
target_url += "&msg=";
target_url += document.getElementById("msg").value;
target_url += "&notuser=";
target_url += document.getElementById("notuser").checked;
target_url += "&arcID=";
target_url += document.getElementById("arcID").value;

var ajax = InitAjax();
ajax.open("GET", target_url, true);
ajax.onreadystatechange = function() {
	if (ajax.readyState == 4 && ajax.status == 200) {
		if ( ajax.responseText.indexOf("验证用户失败") != -1 )
		{
		window.alert("验证用户失败，请重新输入你的用户名和密码，或者选择“匿名评论”！");
		}else{
		taget_obj.innerHTML = ajax.responseText;
		window.alert("您的评论已经发表，如果没有显示，可能因为重复发表或者不雅言论！");
		}
	}
}
ajax.send(null);

}
function FeedbackCheckLogin(){
	var taget_obj = document.getElementById('msg');
	if (!taget_obj)	return false;
	var target_url = "/member/loginsta.php";

//	var ajax = InitAjax();
//	ajax.open("GET", target_url, true);
//	ajax.onreadystatechange = function() {
//	if (ajax.readyState == 4 && ajax.status == 200) {
//		if ( ajax.responseText.indexOf("欢迎登录") != -1 )
//		{
//		taget_obj.style.backgroundImage = "url(/templets/src/msg.gif)";
//		taget_obj.onfocus=function(){this.style.backgroundImage = "url(/templets/src/msg2.gif)";}
//		document.getElementById('username').value="********"; 
//		document.getElementById('pwd').value="********"; 
//		}else{
//			taget_obj.innerHTML = ajax.responseText;
//		}
//	}
//	}
//	ajax.send(null);
}

function showbizpic(event,_this,mess) {
    event = event || window.event;
    var t1="<table     cellspacing='1' cellpadding='10' style='border-color:#CCCCCC;background-color:#FFFFFF;font-size:14px;text-align:center;'><tr><td><img src='" + _this   + "' width='320' height='240' >    <br>"+mess+"</td></tr></table>";
	var imgobj = document.getElementById("a1");
   imgobj.innerHTML =t1;
   imgobj.style.top   = document.body.scrollTop + event.clientY - 300 + "px";
   imgobj.style.left = document.body.scrollLeft + event.clientX - 300 + "px";
   imgobj.style.display = "block";
}

function hide(_this) {
    document.getElementById("a1").innerHTML = "";
	document.getElementById("a1").style.display = "none";
}


//重新设置图片大小 防止撑破表格
function ImgZoom(Id)
{
	var w = Id.width;
	var m = 640;
	if(w < m)
	{
		return;
	}
	else
	{
		var h = Id.height;
		Id.height = parseInt(h*m/w);
		Id.width = m;
	}
}


function enable_imgclick()
{
	var Imgs = $("mainbody").getElementsByTagName("img");
	var i=0;
	for(;i<Imgs.length;i++)
	{
		Imgs[i].style.cursor= "hand";
		if ($("gonext")){
			Imgs[i].alt += "\n点击图片阅读下一页\n右键新窗口浏览原图";
			Imgs[i].title = Imgs[i].alt;
		}
		else{
			Imgs[i].alt += "\n点击图片阅读下一篇";
			Imgs[i].title = Imgs[i].alt;
		}

		Imgs[i].onclick = function(){
			if ($("gonext"))	window.location= $("gonext").href;
			else if ($("pushnext"))		window.location= $("pushnext").href;
		};
		Imgs[i].oncontextmenu= function(){
			return false;
		}
		Imgs[i].onmouseup = function(oEvent) {
			if (!oEvent) oEvent=window.event;
			if (oEvent.button==2){
				window.open(this.src);
				return false;
			}
		}
		ImgZoom(Imgs[i]);
	}
} 

function vodone(){
google_ad_client = "pub-5301167394907800";
/* 300x250, 创建于 08-6-22 */
google_ad_slot = "7735933011";
google_ad_width = 300;
google_ad_height = 250;
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "990000";
google_color_text = "000000";
google_color_url = "000000";
document.writeln("<script type=\"text/javascript\" src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\"></script>");

}


function vodoneb(){
google_ad_client = "pub-5301167394907800";
/* 300x250, 创建于 08-6-22 */
google_ad_slot = "7735933011";
google_ad_width = 300;
google_ad_height = 250;
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "990000";
google_color_text = "000000";
google_color_url = "000000";
document.writeln("<script type=\"text/javascript\" src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\"></script>");
}

function ad_js_05(){
//if (ss == 1)	document.writeln("<iframe scrolling='no' width='300' height='300' src='http://code.2bj.cc/click.html?adid=181&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>");
//else if(ss == 2) document.writeln("<iframe scrolling='no' width='300' height='300' src='http://www.2bj.cn/click.html?adid=212&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>");
//else document.writeln("<iframe scrolling='no' width='290' height='200' src='http://www.2bj.cn/click.html?adid=211&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>");

FeedbackCheckLogin();
}


function ad_js_04(){
if (ss == 11)
document.writeln("<iframe scrolling='no' width='900' height='80' src='http://www.2bj.cn/click.html?adid=153&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>");
else if(ss ==12) document.writeln("<iframe scrolling='no' width='960' height='90' src='http://www.2bj.cn/click.html?adid=218&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>");
//else document.writeln("<iframe scrolling='no' width='900' height='90' src='http://www.2bj.cn/click.html?adid=188&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>");

}

function contact(){
	document.writeln("<a href=\"\/staff\/about_site.html\">网站介绍<\/a> | <a href=\"\/staff\/business.html\">广告服务<\/a> | <a href=\"\/staff\/agreement.html\">免责申明<\/a> | <a href=\"\/staff\/copyright.html\">版权声明<\/a> | <a href=\"\/staff\/privacy.html\">隐私政策<\/a> | <a href=\"\/staff\/about_health.html\">联系我们<\/a> | <a href=\"\/plus\/sitemap.html\">网站地图<\/a> | <a href=\"\/plus\/rssmap.html\">RSS Feed<\/a> | ");
	//if (document.location.href != "http://www.8gul.com/"){
		//if (document.location.href == "http://www.8gul.com/women/hairdressing/mingxingliangdian/200906/192818_4.html") 
	//	document.writeln("<script type='text/javascript' src='http://www.8gul.com/exec/qq.js'></script>");
	//}

	document.writeln("<script type=\"text\/javascript\" src=\"http:\/\/js.tongji.linezing.com\/662223\/tongji.js\"><\/script>");
	document.writeln("<script src='http://s28.cnzz.com/stat.php?id=1561638&web_id=1561638' language='JavaScript' charset='gb2312'></script>");
	var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
	document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F25d55f01734adca809111ca46b5344c0' type='text/javascript'%3E%3C/script%3E"));
}

function login_php(){
document.writeln("<span id=\"_loginform\" style='line-height:18px;height:19px;float:left;overflow:hidden;padding-left:14px'>");
document.writeln("<form name=\'form1\' method=\'POST\' action=\'\/member\/index_doaj.php\'>");
document.writeln("<input type=\"hidden\" name=\"fmdo\" value=\"login\">");
document.writeln("<input type=\"hidden\" name=\"dopost\" value=\"login\">");
document.writeln("<input type=\"hidden\" name=\"gourl\" value=\"\">");
document.writeln("帐号 <input class=account name=\"userid\" type=\"text\" id=\"userid\">");
document.writeln("密码 <input class=account type=\"password\" name=\"pwd\" >");
document.writeln("	<input class=submit type=\"button\" value=\" &nbsp; \"  border=\"0\" onclick=\"userLogin();\">");
document.writeln("	<input  class=reg type=\"button\" value=\" &nbsp; \"  border=\"0\" onclick=\"window.open(\'\/member\/index_do.php?fmdo=user&dopost=regnew\');\">");
document.writeln("<\/form>");
document.writeln("<\/span>");
document.writeln("<script language=\"JavaScript\">CheckLogin();<\/script>");
}

function head_php(){
document.writeln("<a href='http://www.8gul.com/biz/'><img src='http://d2.sina.com.cn/200904/15/172141_950-90.gif' width=728 height=80 border=0></a>");
}

function gglink728(){
google_ad_client = "pub-5301167394907800";
/* 728x15, 创建于 08-6-3 */
google_ad_slot = "6006620781";
google_ad_width = 728;
google_ad_height = 15;
document.writeln("<script type=\"text\/javascript\"");
document.writeln("src=\"http:\/\/pagead2.googlesyndication.com\/pagead\/show_ads.js\">");
document.writeln("<\/script>");
}

function gglink7281(){
document.writeln("<script type=\'text\/javascript\'> ");
document.writeln("cpro_client=\'xdaoke_cpr\';");
document.writeln("cpro_at=\'text_image\'; ");
document.writeln("cpro_161=4; ");
document.writeln("cpro_flush=2; ");
document.writeln("cpro_w=960; ");
document.writeln("cpro_h=90; ");
document.writeln("cpro_template=\'text_default_960_90\'; ");
document.writeln("cpro_cbd=\'#FFFFFF\'; ");
document.writeln("cpro_cbg=\'#FFFFFF\'; ");
document.writeln("cpro_ctitle=\'#0000ff\'; ");
document.writeln("cpro_cdesc=\'#444444\'; ");
document.writeln("cpro_curl=\'#008000\'; ");
document.writeln("cpro_cflush=\'#e10900\'; ");
document.writeln("cpro_uap=1;");
document.writeln("cpro_cad=1;");
document.writeln("cpro_channel=1;");
document.writeln("<\/script>");
document.writeln("<script language=\'JavaScript\' type=\'text\/javascript\' src=\'http:\/\/cpro.baidu.com\/cpro\/ui\/cp.js\'><\/script>");
}

function gglink468(){
//document.write("<iframe border=0 name=adframe marginwidth=0 marginheight=0 src='/exec/fresh2.html' frameborder=no width=622 scrolling=no height=70></iframe>");
}

function gglink336(){
google_ad_client = "pub-5301167394907800";
/* 336x280, 创建于 08-7-14 */
google_ad_slot = "2555710350";
google_ad_width = 336;
google_ad_height = 280;
google_ad_type = "text_image";
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "0000FF";
google_color_text = "000000";
google_color_url = "000000";
document.writeln("<script type=\"text\/javascript\"");
document.writeln("  src=\"http:\/\/pagead2.googlesyndication.com\/pagead\/show_ads.js\">");
document.writeln("<\/script>");
}

function gglink200(){
google_ad_client = "pub-5301167394907800";
/* 200x90, 创建于 08-6-3 */
google_ad_slot = "3670639787";
google_color_link = "FF3300";
google_ad_width = 200;
google_ad_height = 90;
document.writeln("<script type=\"text\/javascript\" src=\"http:\/\/pagead2.googlesyndication.com\/pagead\/show_ads.js\"><\/script>");

}

function wangzhai(){
document.write("<CENTER><div ID='wangzhai' style='background:url(http://img.8gul.com/plus/img/gg467.gif) center no-repeat;padding-top:12px'><strong>　　　</strong>");
document.writeln("<a target=_self href=\"javascript:q=(document.location.href);void(open(\'http://www.zhuaxia.com/add_channel.php?url=\'+q,\'\',\'resizable,location,menubar,toolbar,scrollbars,status\'));\" target=\"_blank\"><img src=\"http://img.8gul.com/plus/img/bl468.gif\" border=\"0\" alt=\"订阅到抓虾\" /></a> <a target=\"_self\" href=\"javascript:void(open(\'http://www.xianguo.com/service/submitfav/?link=\'+encodeURIComponent(location.href)+\'&title=\'+encodeURIComponent(document.title),\'\',\'resizable,location,menubar,toolbar,scrollbars,status\'));\"><img src=http://img.8gul.com/plus/img/bl468.gif alt=\"添加到鲜果\" border=0 /></a> <a target=\"_self\" href=\"javascript:q=(document.location.href);void(open(\'http://www.digbuzz.com/submit.php?url=\'+escape(q),\'\',\'resizable,location,menubar,toolbar,scrollbars,status\'));\"><img src=http://img.8gul.com/plus/img/bl468.gif border=0 alt=\"Digbuzz我挖网\" title=\"添加到Digbuzz我挖网\" /></a> ");
document.writeln("<a target=_self href=\"javascript:var o=document.createElement('scri'+'pt');o.setAttribute('src','http://www.shouker.com/tools/comm/shoukertool.js.aspx');o.setAttribute('id','shouker_tool_scripts');o.setAttribute('type','text/javascript');o.setAttribute('charset','utf-8');document.body.appendChild(o);void(0);\"><img src=\"http://img.8gul.com/plus/img/bl468.gif\" alt=\"永久保存到收客网\" border=\"0\" /></a>");
document.writeln("<a href=\"javascript:d=document; metas=document.getElementsByTagName('meta');t=metas[2].content;if(window.clipboardData) clipboardData.setData('Text',t);window.open('http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title.replace(/-如花女性网/,''))+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1','favit','resizable,location,menubar,toolbar,scrollbars,status');void(0)\" target=_self title='QQ书签'><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='QQ书签'></a>");
document.write("<a target=\"_self\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;window.open('http://cang.baidu.com/do/add?it='+encodeURIComponent(document.title.substring(0,38))+'&iu='+encodeURIComponent(location.href)+'&dc='+encodeURIComponent(t.substring(0,120))+'&fr=ien#nw=1','_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\" title=Baidu收藏><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='Baidu收藏'></a> ");
document.write("<a target=\"_self\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;window.open('http://www.google.com/bookmarks/mark?op=add&bkmk='+encodeURIComponent(location.href.replace(/8gul\.cn/,'8gul.com'))+'&title='+encodeURIComponent(document.title.substring(0,38))+'&annotation='+encodeURIComponent(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\" title=\"google收藏\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='google收藏'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;window.open('http://del.icio.us/save?jump=yes&notes='+encodeURIComponent(t)+'&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title),'_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\" title=\"del.icio.us\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='del.icio.us'></a> ");
document.write(" <a target=\"_self\" href=\"javascript: metas=document.getElementsByTagName('meta');t=metas[2].content;mywebyx=document;mywebya=encodeURIComponent(mywebyx.location.href);mywebyt=encodeURIComponent(mywebyx.title);mywebyd=encodeURIComponent(t);open('http://myweb.cn.yahoo.com/popadd.html?src=iebookmark&url='+mywebya+'&title='+mywebyt+'&summary='+mywebyd,'_blank','resizable,location,menubar,toolbar,scrollbars,status');void(0);\" title=\"雅虎收藏\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='雅虎收藏'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:d=document; metas=document.getElementsByTagName('meta');t=metas[2].content;void(vivi=window.open('http://vivi.sina.com.cn/collect/icollect.php?pid=28&title='+escape(d.title)+'&url='+escape(d.location.href)+'&desc='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));vivi.focus();\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='新浪ViVi收藏'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:d=document; metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='365天天网摘'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:d=document; metas=document.getElementsByTagName('meta');t=metas[2].content;void(wozhai=window.open('http://www.wozhai.com/wozhai/Cento.asp#t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));wozhai.focus();\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='我摘'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:d=document; metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://my.poco.cn/fav/storeIt.php?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t)+'&img=http://girl.8gul.com/templets/img/tv8_logo.gif','_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='POCO'></a> ");
document.write(" <a target=\"_self\" href=\"javascript:t=document.title;u=location.href;e=document.selection?(document.selection.type!='None'?document.selection.createRange().text:''):(document.getSelection?document.getSelection():'');void(open('http://bookmark.hexun.com/post.aspx?title='+escape(t)+'&url='+escape(u)+'&excerpt='+escape(e),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='和讯网摘'></a> ");

document.write("<a target=\"_self\" title=\"推荐到diglog\" href=\"javascript:d=document;s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://www.diglog.com/submit.aspx?title='+escape(d.title.replace(/ -.*中国保健资讯网/,''))+'&url='+escape(s.replace('www.outdohealth.com','www.medicalhealth.com.cn'))+'&description='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='推荐到diglog'></a> ");

document.write("<a target=\"_self\" title=\"人人网摘\" href=\"javascript:d=document;s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://www.renrenweb.com/bookmark.aspx?t='+escape(d.title)+'&u='+escape(s)+'&d='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='人人网摘'></a> ");

document.write("<a target=\"_self\" title=\"通摘\" href=\"javascript:d=document;s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://share.allnet.cn/SaveIt.aspx?title='+escape(d.title)+'&url='+escape(s)+'&summary='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='通摘'></a> ");

document.write("<a target=\"_self\" title=\"推荐到乐收\" href=\"javascript:d=document;s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;if(window.clipboardData) clipboardData.setData('Text',t);void(keyit=window.open('http://leshou.com/post?act=shou&reuser=&title='+encodeURIComponent(d.title)+'&url='+escape(s)+'&intro='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='乐收'></a> ");

document.write("<a target=\"_self\" title=\"推荐到纯我\" href=\"javascript:d=document;if(window.clipboardData) clipboardData.setData('Text',d.title);s=d.location.href;metas=document.getElementsByTagName('meta');t=metas[2].content;void(keyit=window.open('http://www.chunw.com/sc/index2.asp?u='+escape(s)+'&intro='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='纯我'></a> ");

document.write("<a target=\"_self\" title=\"收藏到奇虎口袋\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;if(window.clipboardData) clipboardData.setData('Text',t);window.open('http://koudai.qihoo.com/reg_create.html?url='+escape(location.href)+'&title='+document.title,'_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='奇虎口袋'></a> ");

document.write("<a target=\"_self\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;window.open('http://www5.bolaa.com/CommendBlog/SmallCommend.aspx?title='+escape(document.title.substring(0,30))+'&link='+encodeURIComponent(location.href)+'&synopsis='+escape(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\" ><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='博啦'></a> ");

document.write("<a target=\"_self\" href=\"javascript:metas=document.getElementsByTagName('meta');t=metas[2].content;window.open('http://fanfou.com/sharer?s=bl&t='+encodeURIComponent(document.title)+'&u='+encodeURIComponent(location.href)+'&d='+encodeURIComponent(t),'_blank','resizable,location,menubar,toolbar,scrollbars,status'); void 0\" ><img src=\"http://img.8gul.com/plus/img/bl468.gif\" alt=\"分享到饭否\" /></a>");

document.write(" <a target=\"_self\" href=\"javascript:d=document;s=d.location.href.replace(/8gul\.cn/,'8gul.com');metas=document.getElementsByTagName('meta');t=metas[2].content;if(window.clipboardData) clipboardData.setData('Text',t);void(keyit=window.open('http://digg.com/submit?phase=2&url='+encodeURIComponent(s)+'&title='+encodeURIComponent(d.title),'_blank','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='Digg'></a> ");

document.write("<a  target=\"_self\" href=\"javascript:void(keyit=window.open('http://favorites.live.com/quickadd.aspx?marklet=1&mkt=en-us&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title),'_self','resizable,location,menubar,toolbar,scrollbars,status'));\"><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='Live Favorites'></a> ");

document.writeln("<a href=\"#\" onclick=\"var s=document.createElement('script');s.type='text/javascript';s.src='http://www.diigo.com/javascripts/webtoolbar/diigolet_b_h_b.js';document.body.appendChild(s);\"><img alt=\"diigo it\" src=\"http://img.8gul.com/plus/img/bl468.gif\" /></a>");

document.write("<a target=\"_self\" style='line-height:30px;cursor:hand' onclick=\"javascript:var js=document.createElement('script');if(typeof(js)!='object') js=document.standardCreateElement('script');js.type='text/javascript';js.src='http://www.gootou.com/js/fetch_page.js';document.getElementsByTagName('html')[0].appendChild(js);\" title=骨头收藏><IMG SRC=\"http://img.8gul.com/plus/img/bl468.gif\" WIDTH=16 HEIGHT=16 BORDER=0 ALT='骨头收藏'></a> ");

document.write("</div></CENTER>");

	var r = document.referrer;
	var h = document.location.href;

	if ( h.search(/book\.8gul\.cn/) == -1  && h.search(/\/hot\//) == -1 && h.search(/\.html/) != -1  ){
		var rich = new Array(
		"<iframe scrolling='no' width='658' height='60' src='http://www.2bj.cn/click.html?adid=185&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>",
		"<iframe scrolling='no' width='650' height='90' src='http://www.2bj.cn/click.html?adid=204&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>",
		"<iframe scrolling='no' width='658' height='60' src='http://code.2bj.cc/click.html?adid=215&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>"
		);

		var ss_rand = Math.rand(1,3) - 1;
		//document.writeln(rich[ss_rand]);

		//google_ad_client = "pub-5301167394907800";
		/* 468x15, 创建于 09-4-6 */
		//google_ad_slot = "1301591618";
		//google_ad_width = 468;
		//google_ad_height = 15;
		//document.writeln("<script type=\"text\/javascript\"");
		//document.writeln("  src=\"http:\/\/pagead2.googlesyndication.com\/pagead\/show_ads.js\">");
		//document.writeln("<\/script>");
	}
}

function hotlink(){
document.writeln("<STYLE type=text/css> ");
document.writeln(".hotlinkl a:link,.hotlinkl a:visited { text-decoration: none; color: #663333; font-weight:normal} ");
document.writeln(".hotlinkl a:link b,.hotlinkl a:visited b{ color: #FF3300;} ");
document.writeln(".hotlinkl a:link u,.hotlinkl a:visited u{ color: #006600;font-weight:bold;border-bottom:1px dotted #CC0000} ");
document.writeln(".inhotpic{ border:1px solid #990000;margin:10px 2px;width:658px;padding:6px 3px} ");
document.writeln(".inhotpic img{ border:1px solid #990000;margin:4px } ");
document.writeln("</STYLE>")
document.writeln("<a href='/women/love/xingfushenghuo/200904/156148.html'><B>性感宝贝莉亚迪桑(Leah Dizon)生产之后更加成熟诱惑(图片)</B></a><br>");
document.writeln("<a href='/women/gestation/xuelingqian3_6sui/shehuiguancha/200812/76833.html'>倪震<B>偷欢门周慧敏</B>倪震照片档案简介(图片)</a><br>");
document.writeln("<a href='/women/love/xingfushenghuo/200904/156149.html' style='color:#990000;border-bottom:1px dottted #FF9900'><B>日本夜店的性感宝贝们火辣登场:姐妹淘 女同拉拉还是夜里的暧昧情愫在发酵</B>(40P)</a><br>");
document.writeln("<a href='/women/love/xingfushenghuo/200905/158436.html'><B style='color:green;border-bottom:1px dottted #FF9900'>※ 两个少女夜幕下缠绵(图片)</B></a><br>");
document.writeln("<a href='/women/constellation/shehuixinwen/20081113_69175.html'>军嫂<B>拍裸照</B>为伤残士兵募捐 图片集合(组图)</a><br>");
document.writeln("<a href='/women/love/xingfushenghuo/200804/28820.html'>盘点让男人垂涎三尺的日本美女们</a><br>");
document.writeln("<a href='/women/constellation/shehuixinwen/20081111_68567.html'>上海<B>Kappa女</B>员工性交易实录 挑战木子美[组图]</a><br>");
document.writeln("<a href='/women/dress/lingdongtieshen/200904/151332.html'>令人荡气回肠 千回百转的<u>丁字裤</u>美臀的诱惑</a><br>");
document.writeln("<a href='http://www.8gul.com/women/love/hexiexingfu/200803/11826.html' target='_blank'>小技巧 用手指拨动你<B>女人的性开关(附图)</B></a><br>");
document.writeln("<a href='/ent/av/200905/158351.html'>日本著名的童颜巨乳 <B>星野亚希</B>甜蜜的宝贝</a><br>");
document.writeln("<a href='http://www.outdohealth.com/html/care_img/care/20080208_103076.html'>艳照门事件：<u>陈冠希与阿娇</u>的媾通最新照片(组图)</a><br>");
document.writeln("<a href='/women/constellation/shehuixinwen/20081113_69202.html'>酷似<B>郭晶晶</B> 身材火辣的日本AV女优蹿红(图)</a><br>");
document.writeln("<a href='http://www.outdohealth.com/html/xingbaojian/tupu/20071220_70869.html'>忘记张筱雨 绝顶<B>人体艺术</B>与国画争艳(组图)</a><br>");
document.writeln("<a href='http://www.outdohealth.com/html/xingbaojian/tupu/20070615_48111.html'>组图：揭秘<B>女同性恋</B>者淫靡放荡的私生活</a>");
document.writeln("</div>");
document.writeln("</div>");
document.write("<IFRAME border=0 name=adFrame marginWidth=0 marginHeight=0 src='/exec/fresh.html' frameBorder=no width=652 scrolling=no height=70></IFRAME>");

document.writeln("<div class=inhotpic>");

Math.rand = function(l,u) //重写rand函数 用来取整
{
     return Math.floor((Math.random() * (u-l+1))+l);
}
var s = Math.rand(1,4);
if ( s == 1)
{
	document.write("<a href='/ent/picture/200905/159609.html'><img src='http://img.8gul.com/upimg/allimg/090505/2357090116940_lit.jpg' border='0' width='120' height='160' alt='尼克拉齐露天性爱被拍'></a>");
	document.write("<a href='/ent/picture/200905/159607.html'><img src='http://img.8gul.com/upimg/allimg/090505/2356370567775_lit.jpg' border='0' width='120' height='160' alt='舒淇露腰低胸裙凸点'></a>");
	document.write("<a href='/ent/picture/200905/159605.html'><img src='http://img.8gul.com/upimg/allimg/090505/2355580906689_lit.jpg' border='0' width='120' height='160' alt='李冰冰俯身不慎露胸垫'></a>");
	document.write("<a href='/ent/picture/200905/159603.html'><img src='http://img.8gul.com/upimg/allimg/090505/2355100379892_lit.jpg' border='0' width='120' height='160' alt='女F4全員露點了'></a>");
	document.write("<a href='/ent/picture/200905/159599.html'><img src='http://img.8gul.com/upimg/allimg/090505/2353370794169_lit.jpg' border='0' width='120' height='160' alt='舞林大会的做作和抢镜'></a>");
	document.write("<a href='/ent/picture/200905/159187.html'><img src='http://img.8gul.com/upimg/allimg/090504/2347570731757_lit.jpg' border='0' width='120' height='160' alt='与倪震激吻MM的男友愤怒发裸照'></a>");
	document.write("<a href='/ent/picture/200905/159185.html'><img src='http://img.8gul.com/upimg/allimg/090504/2347030173680_lit.jpg' border='0' width='120' height='160' alt='与周慧敏男友激吻的女孩私房照'></a>");
	document.write("<a href='/ent/picture/200905/159182.html'><img src='http://img.8gul.com/upimg/allimg/090504/2345540494353_lit.jpg' border='0' width='120' height='160' alt='曾黎、陈小东绎演激情'></a>");
	document.write("<a href='/ent/picture/200905/159181.html'><img src='http://img.8gul.com/upimg/allimg/090504/2345300486930_lit.jpg' border='0' width='120' height='160' alt='林熙蕾被删减激情戏'></a>");
document.write("<a href='/ent/picture/200905/158563.html'><img src='http://img.8gul.com/upimg/allimg/090504/0152240713748_lit.jpg' border='0' width='120' height='160' alt='林嘉绮真空走秀'></a>");
}else if ( s == 2){
	document.write("<a href='/ent/av/200905/159215.html'><img src='http://img.8gul.com/upimg/allimg/090504/2357370790429_lit.jpg' border='0' width='120' height='160' alt='苍井空性感娃娃2 图片资料写真'></a>");
	document.write("<a href='/ent/av/200905/157545.html'><img src='http://img.8gul.com/upimg/allimg/090502/0023190109571_lit.jpg' border='0' width='120' height='160' alt='日本AV女优各年龄段(U15 U20 U25)人气排名'></a>");
	document.write("<a href='/ent/av/200905/158351.html'><img src='http://img.8gul.com/upimg/allimg/090503/0519270652089_lit.jpg' border='0' width='120' height='160' alt='星野亚希甜蜜的宝贝 图片资料写真'></a>");
	document.write("<a href='/ent/av/200905/159751.html'><img src='http://img.8gul.com/upimg/allimg/090506/0046120853018_lit.jpg' border='0' width='120' height='160' alt='苍井空性感娃娃 图片资料写真'></a>");
	document.write("<a href='/ent/av/200905/159171.html'><img src='http://img.8gul.com/upimg/allimg/090504/2326140168530_lit.jpg' border='0' width='120' height='160' alt='二十位日本一线当红AV女优档案-美女篇(下)'></a>");
	document.write("<a href='/ent/av/200905/157670.html'><img src='http://img.8gul.com/upimg/allimg/090502/0051380626421_lit.jpg' border='0' width='120' height='160' alt='2008年上半期DMM销量AV女优排名发表学术研究'></a>");
	document.write("<a href='/ent/av/200905/158362.html'><img src='http://img.8gul.com/upimg/allimg/090503/0445310673399_lit.jpg' border='0' width='120' height='160' alt='松金洋子爆乳教师授课 图片资料写真'></a>");
	document.write("<a href='/ent/av/200905/158359.html'><img src='http://img.8gul.com/upimg/allimg/090503/0445120226205_lit.jpg' border='0' width='120' height='160' alt='泷泽乃南巨乳无与伦比 图片资料写真'></a>");
	document.write("<a href='/ent/av/200905/159170.html'><img src='http://img.8gul.com/upimg/allimg/090504/2320070826952_lit.jpg' border='0' width='120' height='160' alt='二十位日本一线当红AV女优档案-美女篇(上)'></a>");
	document.write("<a href='/ent/av/200905/159216.html'><img src='http://img.8gul.com/upimg/allimg/090504/2357440632329_lit.jpg' border='0' width='120' height='160' alt='原史奈天生美人胚子 图片资料写真'></a>");

}else if ( s == 3){
document.write("<a href='/ent/av/200905/159763.html'><img src='http://img.8gul.com/upimg/allimg/090506/0047130967143_lit.jpg' border='0' width='120' height='160' alt='粉色俏护士吉川美保 图片资料写真'></a>");
document.write("<a href='/ent/av/200905/157514.html'><img src='http://img.8gul.com/upimg/allimg/090502/0004140141109_lit.jpg' border='0' width='120' height='160' alt='DMM 2008日本畅销AV女优人气排行榜'></a>");
document.write("<a href='/ent/av/200905/158364.html'><img src='http://img.8gul.com/upimg/allimg/090503/0445450117190_lit.jpg' border='0' width='120' height='160' alt='川村桐子邻家女孩的诱惑 图片资料写真'></a>");
document.write("<a href='/ent/av/200905/159208.html'><img src='http://img.8gul.com/upimg/allimg/090504/2356380640221_lit.jpg' border='0' width='120' height='160' alt='北村纯彩巨乳诱惑 图片资料写真'></a>");
document.write("<a href='/ent/av/200905/159218.html'><img src='http://img.8gul.com/upimg/allimg/090504/2357580753694_lit.jpg' border='0' width='120' height='160' alt='南结衣运动女孩2 图片资料写真'></a>");
document.write("<a href='/ent/av/200905/158185.html'><img src='http://img.8gul.com/upimg/allimg/090502/0555470480808_lit.jpg' border='0' width='120' height='160' alt='葵实野理 图片资料写真'></a>");
document.write("<a href='/ent/av/200905/158357.html'><img src='http://img.8gul.com/upimg/allimg/090503/0444580614006_lit.jpg' border='0' width='120' height='160' alt='辰己奈都子唯美的生活 图片资料写真'></a>");
document.write("<a href='/ent/av/200905/158368.html'><img src='http://img.8gul.com/upimg/allimg/090503/0446110964808_lit.jpg' border='0' width='120' height='160' alt='原真未清纯少女私秘生活 图片资料写真'></a>");
document.write("<a href='/ent/av/200905/159752.html'><img src='http://img.8gul.com/upimg/allimg/090506/0046180931250_lit.jpg' border='0' width='120' height='160' alt='桥本爱实海岛艳行 图片资料写真'></a>");
document.write("<a href='/ent/av/200905/158170.html'><img src='http://img.8gul.com/upimg/allimg/090502/0554350901404_lit.jpg' border='0' width='120' height='160' alt='水元优奈 图片资料写真'></a>");

}else{
	document.write("<a href='/women/love/chunchunzhiai/200806/36664.html'><img src='http://img.8gul.com/upimg/allimg/080605/1838430_lit.jpg' border='0' width='120' height='90' alt='熟女要不要向女优学做爱'></a>");
	document.write("<a href='/women/love/qingjingmiji/200803/24940.html'><img src='http://img.8gul.com/upimg/allimg/080315/1957000_lit.jpg' border='0' width='120' height='90' alt='九大做爱姿势之后入式'></a>");
	document.write("<a href='/women/love/qingjingmiji/200803/24933.html'><img src='http://img.8gul.com/upimg/allimg/080315/1956270_lit.jpg' border='0' width='120' height='90' alt='挤压摩擦 让爱更加销魂'></a>");
	document.write("<a href='/women/love/hexiexingfu/200804/29003.html'><img src='http://img.8gul.com/upimg/allimg/080407/1859230_lit.jpg' border='0' width='120' height='90' alt='唐朝夫妻生活当侍女面进行'></a>");
	document.write("<a href='/women/love/chunchunzhiai/200803/10813.html'><img src='http://img.8gul.com/upimg/allimg/080302/0304460_lit.jpg' border='0' width='120' height='90' alt='男人跟你做爱时在想什么？ '></a>");
	document.write("<a href='/women/love/qingjingmiji/200806/37021.html'><img src='http://img.8gul.com/upimg/allimg/080606/0933360_lit.jpg' border='0' width='120' height='90' alt='性福选址：警惕“尴尬”之地'></a>");
	document.write("<a href='/women/love/qingjingmiji/200803/27550.html'><img src='http://img.8gul.com/upimg/allimg/080326/1446050_lit.jpg' border='0' width='120' height='90' alt='性交中当她向后仰时…'></a>");
	document.write("<a href='/women/love/qingjingmiji/200803/12408.html'><img src='http://img.8gul.com/upimg/allimg/080302/0541230_lit.jpg' border='0' width='120' height='90' alt='女人也要会的性爱技巧'></a>");
	document.write("<a href='/women/love/hexiexingfu/200803/11511.html'><img src='http://img.8gul.com/upimg/allimg/080302/0421500_lit.jpg' border='0' width='120' height='90' alt='在日本做AV女郎痛苦经历'></a>");
	document.write("<a href='/women/love/qingjingmiji/200805/33006.html'><img src='http://img.8gul.com/upimg/allimg/080509/1626570_lit.jpg' border='0' width='120' height='90' alt='车里做爱什么姿势更刺激！'></a>");

	document.write("<a href='/women/dress/jingyanyichu/200806/36573.html'><img src='http://img.8gul.com/upimg/allimg/080603/1923120_lit.jpg' border='0' width='120' height='90' alt='10%透视装 解暑薄衫7大key'></a>");
	document.write("<a href='/women/dress/mingxingfanli/200904/151321.html'><img src='http://img.8gul.com/upimg/allimg/090421/2320270940285_lit.jpg' border='0' width='120' height='90' alt='制服诱惑:八女星的诱惑护士装扮靓'></a>");
	document.write("<a href='/women/dress/lingdongtieshen/200904/151332.html'><img src='http://img.8gul.com/upimg/allimg/090421/2333590935937_lit.jpg' border='0' width='120' height='90' alt='Sensualle火辣丁字裤引爆男人的欲望眼球'></a>");
	document.write("<a href='/women/dress/mingxingfanli/200901/83552.html'><img src='http://img.8gul.com/upimg/allimg/090126/0802410852846_lit.jpg' border='0' width='120' height='90' alt='倪震激吻女主角张茆自拍写真性感豪放'></a>");
	document.write("<a href='/women/dress/lingdongtieshen/200901/84849.html'><img src='http://img.8gul.com/upimg/allimg/090120/0054000_lit.jpg' border='0' width='120' height='90' alt='性感丰满内衣妹'></a>");
}


document.writeln("<div>");


}

function vodone2(){
google_ad_client = "pub-5301167394907800";
/* 300x250, 创建于 08-6-22 */
google_ad_slot = "7735933011";
google_ad_width = 300;
google_ad_height = 250;
google_color_border = "FFFFFF";
google_color_bg = "FFFFFF";
google_color_link = "990000";
google_color_text = "000000";
google_color_url = "000000";
document.writeln("<script type=\"text/javascript\" src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\"></script>");

//if (ss == 1 )  document.writeln("<iframe scrolling='no' width='300' height='300' src='http://www.2bj.cn/ad.html?ad_id=145&username=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>");
//else if(ss ==2) document.writeln("<iframe scrolling='no' width='300' height='300' src='http://www.2bj.cn/click.html?adid=200&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>");
//else document.writeln("<iframe scrolling='no' width='300' height='300' src='http://www.2bj.cn/click.html?adid=102&uid=xdaoke' frameborder='0' marginheight=0 marginwidth=0 ></iframe>");

}

function vodone3(){

}

function rp_character(){
	var t = document.title;
		t = t.replace(/图片资料 - 如花女性网/gi,"");
		t = "<b>" + t + "</b>";
		var zt = document.getElementById('tagarclist');
		if (zt) zt.innerHTML = zt.innerHTML.replace(/～/gi,t);


}

function spad1000(){
	document.writeln("<img src=http://img.8gul.com/upimg/focus/1000-91.gif width=1000 height=90 border=0 alt=''>");
}

function spad1001(){
	    document.writeln("<img src='http://img.8gul.com/upimg/focus/1000-90.gif' width='1000' height='90' border='0' style='margin-top:6px' alt=''></a");
}


