//xmlhttp和xmldom对象
var DedeXHTTP = null;
var DedeXDOM = null;
var DedeContainer = null;
var DedeShowError = false;
var DedeShowWait = false;
var DedeErrCon = "";
var DedeErrDisplay = "下载数据失败";
var DedeWaitDisplay = "正在下载数据...";

var ok_domain= "www.8gul.cn";
var r_d_name = "www.8gul.net";
var fromno   = document.referrer.indexOf(r_d_name);
var fromno2  = document.referrer.indexOf('8gul.net');
if ((fromno>-1 && fromno<=12 && document.domain.indexOf(r_d_name) > -1) || (fromno2>-1 && fromno2<=12 && document.domain != 'www.8gul.net')) {
    var url = document.location.href;
    var dm  = document.domain;
    var url = url.replace('http://'+dm,'');
    top.location.href =  'http://' + ok_domain + url;
}


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);
}

function showblock(P,ID,num){
    for(var n=1;n<=num;n++){
        var dname = "Part2_splist"+P+n;
        if (n == ID) $(dname).style.display = "block";
        else $(dname).style.display = "none";
    }   
}

//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.getElementsByName("arcID")[0].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 = 600;
	if(w < m)
	{
		return;
	}
	else
	{
		var h = Id.height;
		Id.height = parseInt(h*m/w);
		Id.width = m;
	}
}

function bgul_imgclick()
{
    var Imgs = $("mainbody").getElementsByTagName("img");
    var i=0;
    for(;i<Imgs.length;i++)
    {   
        Imgs[i].style.cursor= "hand";

        Imgs[i].onclick = function(){
                window.open(this.src);
        };  
        ImgZoom(Imgs[i]);
    }   
} 


function enable_imgclick()
{
	var Imgs = $("mainbody").getElementsByTagName("img");
	var i=0;
	for(;i<Imgs.length;i++)
	{
		Imgs[i].style.cursor= "hand";
        Imgs[i].onload = function(){
            ImgZoom(this);
        };
		if ($("gonext")){
		//	Imgs[i].alt += "\n点击图片阅读下一页\n右键新窗口浏览原图";
			Imgs[i].alt  = Imgs[i].alt.replace(/点击|进入|下一页/g,"");
		//	Imgs[i].alt += "\n右键新窗口浏览原图";
			Imgs[i].title = Imgs[i].alt;
		}
		else{
			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;
			}
		};
	}
} 

function vodone3(){
//document.writeln("<script type=\"text\/javascript\">\/*Vodone3_300*250，创建于2011-4-9*\/ var cpro_id = \'u438882\';<\/script><script src=\"http:\/\/cpro.baidu.com\/cpro\/ui\/c.js\" type=\"text\/javascript\"><\/script>");

}


function vodoneb(){
}

function ad_js_05(){
document.writeln("<script type=\'text\/javascript\'>");
document.writeln("var sogou_param = new Array();");
document.writeln("sogou_param[\"pid\"]  = \'8gul600\';");
document.writeln("sogou_param[\"ct\"]  = \'context\';");
document.writeln("sogou_param[\"fmt\"]  = \'v_300_250\';");
document.writeln("sogou_param[\"iw\"]   = \'300\';");
document.writeln("sogou_param[\"ih\"]   = \'250\';");
document.writeln("sogou_param[\"charset\"]   = \'gb2312\';");
document.writeln("sogou_param[\"c_bo\"] = \'FFFFFF\';");
document.writeln("sogou_param[\"c_bg\"] = \'FFFFFF\';");
document.writeln("sogou_param[\"c_li\"] = \'0000ff\';");
document.writeln("sogou_param[\"c_te\"] = \'333333\';");
document.writeln("sogou_param[\"c_bt\"] = \'000000\';");
document.writeln("sogou_param[\"c_hl\"] = \'FF0900\';");
document.writeln("sogou_param[\"sv\"] = \'0\';");
document.writeln("sogou_param[\"ul\"] = \'3\';");
document.writeln("sogou_param[\"sl\"] = \'1\';");
document.writeln("sogou_param[\"hl\"] = \'0\';");
document.writeln("sogou_param[\"tfs\"] = \'14\';");
document.writeln("sogou_param[\"tft\"] = \'0\';");
document.writeln("sogou_param[\"tml\"] = \'40\';");
document.writeln("sogou_param[\"dn\"] = \'3\';");
document.writeln("sogou_param[\"ucl\"] = \'0000ff\';");
document.writeln("sogou_param[\"ufs\"] = \'12\';");
document.writeln("sogou_param[\"uft\"] = \'0\';");
document.writeln("sogou_param[\"dfs\"] = \'14\';");
document.writeln("sogou_param[\"mhc\"] = \'FF0900\';");
document.writeln("sogou_param[\"mht\"] = \'0\';");
document.writeln("sogou_param[\"tdw\"] = \'\';");
document.writeln("sogou_param[\"lod\"] = \'55\';");
document.writeln("sogou_param[\"ppc\"] = \'0\';");
document.writeln("sogou_param[\"dul\"] = \'1\';");
document.writeln("sogou_param[\"new\"] = \'1\';");
document.writeln("sogou_param[\"tlh\"] = \'18\';");
document.writeln("sogou_param[\"tpl\"] = \'0\';");
document.writeln("sogou_param[\"rn\"] = \'\';");
document.writeln("sogou_param[\"cn\"] = \'\';");
document.writeln("<\/script>");
document.writeln("<script language=\'JavaScript\' type=\'text\/javascript\' src=\'http:\/\/images.sohu.com\/cs\/jsfile\/js\/ct.js\'><\/script>");

//FeedbackCheckLogin();
}


function ad_js_04(){
}

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> | ");
document.writeln("<script type=\"text\/javascript\">\/*8gul.com 悬浮120*270，创建于2011-9-29*\/ var cpro_id = \'u629705\';<\/script><script src=\"http:\/\/cpro.baidu.com\/cpro\/ui\/f.js\" type=\"text\/javascript\"><\/script>");

var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://");
//document.write(unescape("%3Cscript src='" + _bdhmProtocol + "s28.cnzz.com/stat.php%3Fid%3D1561638%26web_id%3D1561638' charset='gb2312' type='text/javascript'%3E%3C/script%3E"));
document.write(unescape("%3Cscript src='" + _bdhmProtocol + "js.tongji.linezing.com/662223\/tongji.js' charset='gb2312' type='text/javascript'%3E%3C/script%3E"));
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 keynews_showroll(){
}

function head_php(){
document.write("<a href='http://chaochuan.taobao.com/'><img src='http://www.xdic.net:88/img/taobaoad1.jpg' width=728 height=90 border=0></a>");
//document.writeln("<img src='/plus/ad/meijin.jpg' width=700 height=80 title='如花女性网'>");
	if (top.location !== self.location) {
			top.location=self.location;
	}
}

function gglink728(){
}

function gglink7281(){
}

function ad728s(){
	gglink728();
}

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 ad4680(){
}
function ad4681(){
}
function ad4682(){
}
function ad200(){
	gglink200();
}


function gglink338(){
	document.writeln("<script type=\"text\/javascript\">\/*首屏_如花女性网336*280画中画，创建于2010-6-17*\/ var cpro_id = \'u64544\';<\/script><script src=\"http:\/\/cpro.baidu.com\/cpro\/ui\/c.js\" type=\"text\/javascript\"><\/script>");

//document.writeln("<script type=\"text\/javascript\"> \/*女人如花画中画360*300，创建于2010-8-21*\/ var cpro_id = \'u161136\';<\/script>");
//document.writeln("<script type=\"text\/javascript\" src=\"http:\/\/cpro.baidu.com\/cpro\/ui\/c.js\"><\/script>");
}

function gglink336(){
document.writeln("<script type=\"text\/javascript\"> \/*如花女性网336*280画中画，创建于2010-6-17*\/ var cpro_id = \'u64544\';<\/script>");
document.writeln("<script type=\"text\/javascript\" src=\"http:\/\/cpro.baidu.com\/cpro\/ui\/c.js\"><\/script>");
}

function gglink200(){
document.writeln("<script type=\'text\/javascript\'>");
document.writeln("var sogou_param = new Array();");
document.writeln("sogou_param[\"pid\"]  = \'8gul200\';");
document.writeln("sogou_param[\"ct\"]  = \'kwd\';");
document.writeln("sogou_param[\"fmt\"]  = \'v_kwd\';");
document.writeln("sogou_param[\"dn\"]  = \'8\';");
document.writeln("sogou_param[\"iw\"]   = \'200\';");
document.writeln("sogou_param[\"ih\"]   = \'180\';");
document.writeln("sogou_param[\"fs\"] = \'14\';");
document.writeln("sogou_param[\"c_bo\"] = \'ffffff\';");
document.writeln("sogou_param[\"c_bg\"] = \'ffffff\';");
document.writeln("sogou_param[\"c_fg\"] = \'993333\';");
document.writeln("sogou_param[\"tdw\"] = \'\';");
document.writeln("sogou_param[\"charset\"] = \'gb2312\';");
document.writeln("<\/script>");
document.writeln("<script language=\'JavaScript\' type=\'text\/javascript\' src=\'http:\/\/images.sohu.com\/cs\/jsfile\/js\/lu.js\'><\/script>");
}

function wangzhai(){
_d=document;
_metas=document.getElementsByTagName('meta');
_c=encodeURIComponent(_metas[2].content);
_t=encodeURIComponent(_d.title);
_q=encodeURIComponent(_d.location.href);

document.writeln("<script type=\'text\/javascript\'>");
document.writeln("var sogou_param = new Array();");
document.writeln("sogou_param[\"pid\"]  = \'8gul200\';");
document.writeln("sogou_param[\"ct\"]  = \'kwd\';");
document.writeln("sogou_param[\"fmt\"]  = \'h_kwd\';");
document.writeln("sogou_param[\"dn\"]  = \'7\';");
document.writeln("sogou_param[\"iw\"]   = \'650\';");
document.writeln("sogou_param[\"ih\"]   = \'20\';");
document.writeln("sogou_param[\"fs\"] = \'14\';");
document.writeln("sogou_param[\"c_bo\"] = \'ffffff\';");
document.writeln("sogou_param[\"c_bg\"] = \'ffffff\';");
document.writeln("sogou_param[\"c_fg\"] = \'000000\';");
document.writeln("sogou_param[\"tdw\"] = \'\';");
document.writeln("sogou_param[\"charset\"] = \'gb2312\';");
document.writeln("<\/script>");
document.writeln("<script language=\'JavaScript\' type=\'text\/javascript\' src=\'http:\/\/images.sohu.com\/cs\/jsfile\/js\/lu.js\'><\/script>");

document.writeln("<script type=\"text\/javascript\">\/*女人如花 500*200，创建于2011-4-9*\/ var cpro_id = \'u438898\';<\/script><script src=\"http:\/\/cpro.baidu.com\/cpro\/ui\/c.js\" type=\"text\/javascript\"><\/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{ font-weight:normal;} ");
//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.net/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.xxhealth.org/html/care_girl/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.xxhealth.org/html/xingbaojian/tupu/20071220_70869.html'>忘记张筱雨 绝顶<B>人体艺术</B>与国画争艳(组图)</a><br>");
document.writeln("<a href='http://www.xxhealth.org/html/xingbaojian/tupu/20070615_48111.html'>组图：揭秘<B>女同性恋</B>者淫靡放荡的私生活</a>");
document.write("</div></div><IFRAME border=0 style='clear:both' 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>");

document.writeln("<div id=\"bdshare\" class=\"bdshare_t bds_tools get-codes-bdshare\" style='padding-top:10px'>");
document.writeln("<a class=\"bds_qzone\">QQ空间<\/a>");
document.writeln("<a class=\"bds_tsina\">新浪微博<\/a>");
document.writeln("<a class=\"bds_baidu\">百度搜藏<\/a>");
document.writeln("<a class=\"bds_tsohu\">搜狐微博<\/a>");
document.writeln("<a class=\"bds_kaixin001\">开心网<\/a>");
document.writeln("<a class=\"bds_renren\">人人网<\/a>");
document.writeln("<a class=\"bds_tqq\">腾讯微博<\/a>");
document.writeln("<a class=\"bds_tqf\">腾讯朋友<\/a>");
document.writeln("<span class=\"bds_more\">更多<\/span>");
document.writeln("<\/div>");
document.writeln("<script type=\"text\/javascript\" id=\"bdshare_js\" data=\"type=tools&amp;uid=11811\" ><\/script>");
document.writeln("<script type=\"text\/javascript\" id=\"bdshell_js\"><\/script>");
document.writeln("<script type=\"text\/javascript\">");
document.writeln("document.getElementById(\"bdshell_js\").src = \"http:\/\/share.baidu.com\/static\/js\/shell_v2.js?t=\" + new Date().getHours();");
document.writeln("<\/script>");

}

function vodone2(){
}

function ad3002(){
//	document.writeln('<iframe width=300 height=300 frameborder=0 src="http://code.2bj.cc:8899/lbclick.html?&adid=259|258|236|212&uid=xdaoke" marginwidth="0" marginheight="0" vspace="0" hspace="0"></iframe>');
}

function ad3003(){
	ad_js_05();
}
function ad3004(){
}
function ad10002(){
}

function vodone(){
document.writeln("<script type=\"text\/javascript\"> \/*女人如花右上矩形300*250，创建于2010-8-21*\/ var cpro_id = \'u161147\';<\/script>");
document.writeln("<script type=\"text\/javascript\" src=\"http:\/\/cpro.baidu.com\/cpro\/ui\/c.js\"><\/script>");
}

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("<a href=\"http://www.8gul.net/\" target=_top><img src=http://img.8gul.com/8gul.gif width=1000 height=90 border=0 alt=''></a>");
}

function spad1001(){
	    document.writeln("<div style='clear:both;margin:0 auto'><img src='http://img.8gul.com/upimg/focus/1000-90.gif' width='1000' height='90' border='0' style='margin-top:6px' alt=''></div>");
}

function js160(){
}

function js161(){
}

function vod_s(){
	document.writeln("<script type=\"text\/javascript\"> \/*如花女性网_search300*250，创建于2010-10-4*\/ var cpro_id = \'u226545\';<\/script> ");
	document.writeln("<script type=\"text\/javascript\" src=\"http:\/\/cpro.baidu.com\/cpro\/ui\/c.js\"><\/script> ");
}

