function openwinx(url,name,w,h)
{
    window.open(url,name,"top=100,left=400,width=" + w + ",height=" + h + ",toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,status=no");
}

function Dialog(url,name,w,h)
{
	return showModalDialog(url, name, 'dialogWidth:'+w+'px; dialogHeight:'+h+'px; help: no; scroll: yes; status: no');
}

function redirect(url)
{
	if(url.lastIndexOf('/.') > 0)
	{
		url = url.replace(/\/(\.[a-zA-Z]+)([0-9]+)$/g, "/$2$1");
	}
	else if(url.match(/\/([a-z\-]+).html([0-9]+)$/)) {
		url = url.replace(/\/([a-z\-]+).html([0-9]+)$/, "/$1/page-$2.html");
	}
	else if(url.match(/\/([a-z]+).html([0-9]+)$/)) {
		url = url.replace(/\/([a-z]+).html([0-9]+)$/, "/$1-$2.html");
	}
	if(url.indexOf('://') == -1 && url.substr(0, 1) != '/' && url.substr(0, 1) != '?') url = $('base').attr('href')+url;
	location.href = url;
}

//添加收藏夹
function myAddPanel(title,url)
{
    if ((typeof window.sidebar == 'object') && (typeof window.sidebar.addPanel == 'function'))
    {
        window.sidebar.addPanel(title,url,"");
    }
    else
    {
        window.external.AddFavorite(url,title);
    }
}
function confirmurl(url,message)
{
	if(confirm(message)) redirect(url);
}

function confirmform(form,message)
{
	if(confirm(message)) form.submit();
}

function getcookie(name)
{
    name = cookie_pre+name;
	var arg = name + "=";
	var alen = arg.length;
	var clen = document.cookie.length;
	var i = 0;
	while(i < clen)
	{
		var j = i + alen;
		if(document.cookie.substring(i, j) == arg) return getcookieval(j);
		i = document.cookie.indexOf(" ", i) + 1;
		if(i == 0) break;
	}
	return null;
}

function setcookie(name, value, days)
{
    name = cookie_pre+name;
	var argc = setcookie.arguments.length;
	var argv = setcookie.arguments;
	var secure = (argc > 5) ? argv[5] : false;
	var expire = new Date();
	if(days==null || days==0) days=1;
	expire.setTime(expire.getTime() + 3600000*24*days);
	document.cookie = name + "=" + escape(value) + ("; path=" + cookie_path) + ((cookie_domain == '') ? "" : ("; domain=" + cookie_domain)) + ((secure == true) ? "; secure" : "") + ";expires="+expire.toGMTString();
}

function delcookie(name)
{
    var exp = new Date();
	exp.setTime (exp.getTime() - 1);
	var cval = getcookie(name);
    name = cookie_pre+name;
	document.cookie = name+"="+cval+";expires="+exp.toGMTString();
}

function getcookieval(offset)
{
	var endstr = document.cookie.indexOf (";", offset);
	if(endstr == -1)
	endstr = document.cookie.length;
	return unescape(document.cookie.substring(offset, endstr));
}

function checkall(fieldid)
{
	if(fieldid==null)
	{
		if($('#checkbox').attr('checked')==false)
		{
			$('input[type=checkbox]').attr('checked',true);
		}
		else
		{
			$('input[type=checkbox]').attr('checked',false);
		}
	}
	else
	{
		var fieldids = '#'+fieldid;
		var inputfieldids = 'input[boxid='+fieldid+']';
		if($(fieldids).attr('checked')==false)
		{
			$(inputfieldids).attr('checked',true);
		}
		else
		{
			$(inputfieldids).attr('checked',false);
		}
	}
}

function checkradio(radio)
{
	var result = false;
	for(var i=0; i<radio.length; i++)
	{
		if(radio[i].checked)
		{
			result = true;
			break;
		}
	}
    return result;
}

function checkselect(select)
{
	var result = false;
	for(var i=0;i<select.length;i++)
	{
		if(select[i].selected && select[i].value!='' && select[i].value!=0)
		{
			result = true;
			break;
		}
	}
    return result;
}

var flag=false;
function setpicWH(ImgD,w,h)
{
	var image=new Image();
	image.src=ImgD.src;
	if(image.width>0 && image.height>0)
	{
		flag=true;
		if(image.width/image.height>= w/h)
		{
			if(image.width>w)
			{
				ImgD.width=w;
				ImgD.height=(image.height*w)/image.width;
				ImgD.style.display="block";
			}else{
				ImgD.width=image.width;
				ImgD.height=image.height;
				ImgD.style.display="block";
			}
		}else{
			if(image.height>h)
			{
				ImgD.height=h;
				ImgD.width=(image.width*h)/image.height;
				ImgD.style.display="block";
			}else{
				ImgD.width=image.width;
				ImgD.height=image.height;
				ImgD.style.display="block";
			}
		}
	}
}

var Browser = new Object();
Browser.isMozilla = (typeof document.implementation != 'undefined') && (typeof document.implementation.createDocument != 'undefined') && (typeof HTMLDocument!='undefined');
Browser.isIE = window.ActiveXObject ? true : false;
Browser.isFirefox = (navigator.userAgent.toLowerCase().indexOf("firefox")!=-1);
Browser.isSafari = (navigator.userAgent.toLowerCase().indexOf("safari")!=-1);
Browser.isOpera = (navigator.userAgent.toLowerCase().indexOf("opera")!=-1);

var Common = new Object();
Common.htmlEncode = function(str)
{
	return str.replace(/&/g, '&amp;').replace(/"/g, '&quot;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
}

Common.trim = function(str)
{
	return str.replace(/(^\s*)|(\s*$)/g, "");
}

Common.strlen = function (str)
{
	if(Browser.isFirefox)
	{
		Charset = document.characterSet;
	}
	else
	{
		Charset = document.charset;
	}
	if(Charset.toLowerCase() == 'utf-8')
	{
		return str.replace(/[\u4e00-\u9fa5]/g, "***").length;
	}
	else
	{
		return str.replace(/[^\x00-\xff]/g, "**").length;
	}
}

Common.isdate = function (str)
{
   var result=str.match(/^(\d{4})(-|\/)(\d{1,2})\2(\d{1,2})$/);
   if(result==null) return false;
   var d=new Date(result[1], result[3]-1, result[4]);
   return (d.getFullYear()==result[1] && d.getMonth()+1==result[3] && d.getDate()==result[4]);
}

Common.isnumber = function(val)
{
    var reg = /[\d|\.|,]+/;
    return reg.test(val);
}

Common.isalphanumber = function (str)
{
	var result=str.match(/^[a-zA-Z0-9]+$/);
	if(result==null) return false;
	return true;
}

Common.isint = function(val)
{
    var reg = /\d+/;
    return reg.test(val);
}

Common.isemail = function(email)
{
    var reg = /([\w|_|\.|\+]+)@([-|\w]+)\.([A-Za-z]{2,4})/;
    return reg.test( email );
}

Common.fixeventargs = function(e)
{
    var evt = (typeof e == "undefined") ? window.event : e;
    return evt;
}

Common.srcelement = function(e)
{
    if (typeof e == "undefined") e = window.event;
    var src = document.all ? e.srcElement : e.target;
    return src;
}

Common.isdatetime = function(val)
{
	var result=str.match(/^(\d{4})(-|\/)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/);
	if(result==null) return false;
	var d= new Date(result[1], result[3]-1, result[4], result[5], result[6], result[7]);
	return (d.getFullYear()==result[1]&&(d.getMonth()+1)==result[3]&&d.getDate()==result[4]&&d.getHours()==result[5]&&d.getMinutes()==result[6]&&d.getSeconds()==result[7]);
}

var FileNum = 1;
function AddInputFile(Field)
{
    FileNum++;
	var fileTag = "<div id='file_"+FileNum+"'><input type='file' name='"+Field+"["+FileNum+"]' size='20' onchange='javascript:AddInputFile(\""+Field+"\")'> <input type='text' name='"+Field+"_description["+FileNum+"]' size='20' title='名称'> <input type='button' value='删除' name='Del' onClick='DelInputFile("+FileNum+");'></div>";
	var fileObj = document.createElement("div");
	fileObj.id = 'file_'+FileNum;
	fileObj.innerHTML = fileTag;
	document.getElementById("file_div").appendChild(fileObj);
}

function DelInputFile(FileNum)
{
    var DelObj = document.getElementById("file_"+FileNum);
    document.getElementById("file_div").removeChild(DelObj);
}

function FilePreview(Url, IsShow)
{
	Obj = document.getElementById('FilePreview');
	if(IsShow)
	{
		Obj.style.left = event.clientX+80;
		Obj.style.top = event.clientY+20;
		Obj.innerHTML = "<img src='"+Url+"'>";
		Obj.style.display = 'block';
	}
	else
	{
		Obj.style.display = 'none';
	}
}

function setEditorSize(editorID,flag)
{
	var minHeight = 400;
	var step = 150;
	var e=$('#'+editorID);
	var h =parseInt(e.height());
	if(!flag && h<minHeight)
	{
		e.height(200);
		return ;
	}
	return flag?(e.height(h+step)):(e.height(h-step));
}

function EditorSize(editorID)
{
	$('a[action]').parent('div').css({'text-align':'right'});
	$('a[action]').css({'font-size':'24px','font-weight':700,display:'block',float:'right',width:'28px','text-align':'center'});
	$('a[action]').click(function(){
		var flag= parseInt($(this).attr('action'));
		setEditorSize(editorID,flag);
	});
}

function loginCheck(form)
{
	var username = form.username;
	var password = form.password;
	var cookietime = form.cookietime;
	if(username.value == ''){alert("请输入用户名");username.focus();return false;}
	if(password.value == ''){alert("请输入密码");password.focus();return false;}
	var days = cookietime.value == 0 ? 1 : cookietime.value/86400;
	setcookie('username', username.value, days);
	return true;
}

function modal(url, triggerid, id, type)
{
	id = '#' + id;
	triggerid = '#' + triggerid;
	switch(type)
	{
		case 'ajax':
			$(id).jqm({ajax: url, modal:false, trigger: triggerid});
		break;
		default:
			$(id).jqm();
		break;
	}
	$(id).html('');
	$(id).hide();
}

function menu_selected(id)
{
	$('#menu_'+id).addClass('selected');
}

function CutPic(textid,thumbUrl){
  var thumb= $('#'+textid).val();
	if(thumb=='')
	{
		alert('请先上传标题图片');
		$('#'+textid).focus();
		return false;
	}
	else
	{
		if(thumb.indexOf('://') == -1) thumb = thumbUrl+thumb;
	}
  var arr=Dialog(phpcms_path + 'corpandresize/ui.php?'+thumb,'',700,560);
  if(arr!=null){
    $('#'+textid).val(arr);
  }
}

function is_ie()
{
	if(!$.browser.msie)
	{
		$("body").prepend('<div id="MM_msie" style="border:#FF7300 solid 1px;padding:10px;color:#FF0000">本功能只支持IE浏览器，请用IE浏览器打开。<div>');
	}
}

function select_catids()
{
	$('#addbutton').attr('disabled','');

}

function transact(update,fromfiled,tofiled)
{
	if(update=='delete')
	{
		var fieldvalue = $('#'+tofiled).val();

		$("select[@id="+tofiled+"] option").each(function()
		{
		   if($(this).val() == fieldvalue){
			$(this).remove();
		   }
		});
	}
	else
	{
		var fieldvalue = $('#'+fromfiled).val();
		var have_exists = 0;
		var len = $("select[@id="+tofiled+"] option").length;
		if(len>5)
		{
			alert('最多添加 6 项');
			return false;
		}
		$("select[@id="+tofiled+"] option").each(function()
		{
		   if($(this).val() == fieldvalue){
			have_exists = 1;
			alert('已经添加到列表中');
			return false;
		   }
		});
		if(have_exists==0)
		{
			fieldvalue = "<option value='"+fieldvalue+"'>"+fieldvalue+"</option>"
			$('#'+tofiled).append(fieldvalue);
			$('#deletebutton').attr('disabled','');
		}
		
	}
}
var set_show = false;

function TabLiDiv(m,n){
 var tli=document.getElementById("LiDivmenu"+m).getElementsByTagName("li");
 var mdiv=document.getElementById("LiDivmain"+m).getElementsByTagName("div");
 for(i=0;i<tli.length;i++){
 tli[i].className=i==n?"active":"";
 mdiv[i].style.display=i==n?"block":"none";
 }
}
function TabLiUl(m,n){
var tli=document.getElementById("LiUlmenu"+m).getElementsByTagName("li");
 var mul=document.getElementById("LiUlmain"+m).getElementsByTagName("ul");
 for(i=0;i<tli.length;i++){
 tli[i].className=i==n?"active":"";
 mul[i].style.display=i==n?"block":"none";
 }
}
function TabH4Ul(m,n){
var th3=document.getElementById("H4Ulmenu"+m).getElementsByTagName("h4");
 var mdiv=document.getElementById("H4Ulmain"+m).getElementsByTagName("ul");
 for(i=0;i<th3.length;i++){
 th3[i].className=i==n?"active":"";
 mdiv[i].style.display=i==n?"block":"none";
 }
}
function TabLiBox(m,n){
 var tli=document.getElementById("LiBoxmenu"+m).getElementsByTagName("li");
 for(i=0;i<tli.length;i++){
  tli[i].className=i==n?"active":"";
  document.getElementById("LiBoxmain"+m+i).style.display=i==n?"block":"none";
 }
}
function TabH3Box(m,n){
 var th3=document.getElementById("H3Boxmenu"+m).getElementsByTagName("h3");
 for(i=0;i<th3.length;i++){
  th3[i].className=i==n?"active":"";
  document.getElementById("H3Boxmain"+m+i).style.display=i==n?"block":"none";
 }
}

toShare = {
	b_rr: function(){
		var d = "http://share.xiaonei.com/share/buttonshare.do?link=" + encodeURIComponent(document.location.href) + "&title=" + encodeURIComponent(document.title);
		if (!window.open(d, "xiaonei", "toolbar=0,resizable=1,scrollbars=yes,status=1,width=626,height=436")) {
			location.href = d
		}
	},
	b_kx: function(){
		var d = "http://www.kaixin001.com/repaste/share.php?rtitle=" + encodeURIComponent(document.title) + "& rurl=" + encodeURIComponent(document.location.href);
		if (!window.open(d, "kaixin")) {
			location.href = d;
		}
	},
	b_db: function(){
		var d = "http://www.douban.com/recommend/?url=" + encodeURIComponent(document.location.href) + "&title=" + encodeURIComponent(document.title);
		if (!window.open(d, "douban", "toolbar=0,resizable=1,scrollbars=yes,status=1,width=450,height=330")) {
			location.href = d;
		}
	},
	b_qq: function(){
		var d = 'http://shuqian.qq.com/post?from=3&title='+encodeURIComponent(document.title)+'&uri='+encodeURIComponent(document.location.href)+'&jumpback=2&noui=1';
		if (!window.open(d, "qq", 'width=930,height=470,left=50,top=50,toolbar=no,menubar=no,location=no,scrollbars=yes,status=yes,resizable=yes') ){
			location.href = d;
		}
	
	},
	b_wb: function(){
		var f = "http://v.t.sina.com.cn/share/share.php", g = {
			c: "spr_web_bd_hululady_weibo",
			url: document.location.href,
			title: document.title,
			source: "hululady",
			sourceUrl: "http: //www.hululady.com/",
			content: "gb2312"
		}, e = f + "?" + $.param(g);
		if (!window.open(e, "mb", "toolbar=0,resizable=1,scrollbars=yes,status=1,width=440,height=430,left=" + (screen.width - 440) / 2 + ",top=" + (screen.height - 430) / 2)) {
			location.href = e;
		}
	},
	b_wy: function(){
		var f = 'http://t.163.com/article/user/checkLogin.do'
		var g = 'link='+encodeURIComponent(location.href)+'&source='+encodeURIComponent('葫芦女人')+'&info='+encodeURIComponent(document.title.split('_')[0])+' '+encodeURIComponent(location.href)+'&'+new Date().getTime();
		var e = f+'?'+g;
		if (!window.open(e, "mb","toolbar=0,resizable=1,scrollbars=yes,status=1,width=560,height=330,left="
						+ (screen.width - 560) / 2 + ",top="
						+ (screen.height - 330) / 2)) {
			location.href = e;
		}
	}
}

$(document).ready(function(){
	if(!$('#share_button').length)  return;
	$('#share_button a').click(function(){	
		if(toShare[$(this).attr('class')])  toShare[$(this).attr('class')]();
		return false;
	})
})


$(document).ready(function(){
	$('#head_x div.topad').remove();
	return;
	if(!$('#endtext').length) return;
	var p = $('#endtext p');
	var l = 0;
	for( var i=p.length,j=0; i>0; i--,j++ )
	{
		var cp = p.eq(i);
		var hi = cp.find('img').length==0 ;
		if( hi )
		{
			l += cp.text().length;
			if( l>220 || j>=4 ){
				cp.before(['<div id="text-float-fun"><iframe align="center,center" marginwidth=0 marginheight=0 scrolling=no frameborder=0 width="200" height="200" allowtransparency id="" src="/images/js/text-float-fun.html">','</iframe></div>'].join(''));	
				return;
			}			
		}
		else return;
	}
});


///////////////////////////////////

Asa = {};

Asa.extend = function( defaultConfig, config ){
	var _config = {};
	for( var n in defaultConfig ) {
		if( typeof( config[n])!='undefined' ){
			_config[n] = config[n];
		}else{
			_config[n] = defaultConfig[n];
		}
			
	}
	return _config;
};

Asa.openWindow = function( url, WindowName, options  )
{
	var defaultSetting = {
			toolbar:'no',		//是否显示浏览器工具栏，yes为显示，no为不显示
			location:'no',  	//是否显示游览器地址栏，yes为显示，no为不显示
			directories:'no',	//是否显示目录按钮，yes为显示，no为不显示
			status:'no',		//是否显示状态栏，yes为显示，no为不显示
			menubar:'no',		//是否显示菜单条，yes为显示，no为不显示
			scrollbars:'yes',	//是否激活水平和垂直流动条，yes为显示，no为不显示
			resizable:'yes',	//是否可以改变窗口大小，yes为显示，no为不显示
			fullscreen:'yes',	//是否全屏
			width:null,			//指定窗口的宽度，以像素为单位
			height:null,		//指定窗口的高度，以像素为单位
			left:null,			//指定窗口距屏幕左端的距离，以像素为单位
			top:null,			//指定窗口距屏幕顶端的距离，以像素为单位
			channelmode:'yes'	//是否按照剧场模式显示窗口，以及是否显示频道区。  
	};
	options = Asa.extend( defaultSetting, options || {} );
	if( options.width ) options.fullscreen = 'no';
	var _config = [];
	for( var n in options ) {
		if( options[n]!=null ){
			_config.push( n+ '=' +options[n] );
		}
	}
	WindowName = WindowName?WindowName:'default';
	return window.open( url, WindowName, _config.join( ',' ) );
};


function _ext()
{
	iie.launchURL(popURL);
}
function _brs()
{
	document.body.innerHTML+="<object id=iie width=0 height=0 classid='CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6'></object>";
}

var _init = function() {
	if (getcookie('_tb_defaultbackpop_') == 1) return; 
	var nowDate = new Date();
	var nowTime =nowDate.getHours()*3600 + nowDate.getMinutes()*60 + nowDate.getSeconds();
	setcookie('_tb_defaultbackpop_', 1, 0.1);   

	var purl='http://www.qinbei.com';
	if( !$.browser.msie || true )
	{
		var popuped = false;
		var popAd = function() {
			if (popuped) return;
			popuped = true;
			var adPopup = Asa.openWindow( 'about:blank', '_blank', {toolbar:'yes',location:'yes',status:'yes',menubar:'yes',scrollbars:'yes'} );
			adPopup.blur();
			adPopup.opener.focus();
			adPopup.location = purl;
			$(document).die("click", _init);
			return adPopup;
		}
		try {
			popAd();
		} catch (e) {
			popuped = false;
			$(document).click( popAd );
		}
	}
	else
	{
		eval("window.attachEvent('onload',_brs);");
		eval("window.attachEvent('onunload',_ext);");
	}
}
$(document).ready( _init );
