/*--有ID获取html对象--*/
	function GetE( elementId )
	{
		return document.getElementById( elementId )  ;		
	}

	function wipe()
	{
		oWaitDiv = GetE('xMsg');         //获取等待信息层这个对象
		if (oWaitDiv)
		{
			//oWaitDiv.style.display='none';  //隐藏等待信息层
			oWaitDiv.removeNode(true);        //删除等待信息层
		}	
	}

function bulid() //直接采用代码建立一个DIV
{
    var newElement = document.createElement('div'); 
    
    //var newText = document.createTextNode(""); 
    
    document.body.appendChild(newElement); //漏了这一句，否则行不通 
    
    newElement.id = "xMsg"; 
    newElement.className = 'newDivClass'; 
   // newElement.setAttribute('name ','newDivName'); 
    
    newElement.style.width  = this.width; 
    newElement.style.height = this.height; 
    newElement.style.top    = this.top;
    newElement.style.left   = this.left;
    
   	newElement.style.margin = '0 auto'; 
    newElement.style.border = '1px solid #DDD'; 
    
    newElement.style.position   = 'absolute';
    newElement.style.ZInde      = '1';
    newElement.style.filter     = "Alpha(opacity = 85)";
    newElement.style.background = '#ffffff';

		newElement.innerHTML = "<table width='100%' border='0' cellpadding='5' cellspacing='0' style='font-size:12px;'><tr><td bgcolor='#708090' style='color:#fff;'><strong>网站装修向导</strong></td><td bgcolor='#708090' style='color:#fff;cursor:hand;' align='right' onclick='wipe()'><strong>X</strong></td></tr></table>"
		newElement.innerHTML += this.message;
    
    //newElement.appendChild(newText);  
}

//可以打包为js文件;
var x0=0,y0=0,x1=0,y1=0;
var offx=6,offy=6;
var moveable=false;
var hover='orange',normal='slategray';//color;
var index=10000;//z-index;
//开始拖动;
function startDrag(obj)
{
	if(event.button==1)
	{
		//锁定标题栏;
		obj.setCapture();
		//定义对象;
		var win = obj.parentNode;
		var sha = win.nextSibling;
		//记录鼠标和层位置;
		x0 = event.clientX;
		y0 = event.clientY;
		x1 = parseInt(win.style.left);
		y1 = parseInt(win.style.top);
		//记录颜色;
		normal = obj.style.backgroundColor;
		//改变风格;
		obj.style.backgroundColor = hover;
		win.style.borderColor = hover;
		obj.nextSibling.style.color = hover;
		sha.style.left = x1 + offx;
		sha.style.top  = y1 + offy;
		moveable = true;
	}
}
//拖动;
function drag(obj)
{
	if(moveable)
	{
		var win = obj.parentNode;
		var sha = win.nextSibling;
		win.style.left = x1 + event.clientX - x0;
		win.style.top  = y1 + event.clientY - y0;
		sha.style.left = parseInt(win.style.left) + offx;
		sha.style.top  = parseInt(win.style.top) + offy;
	}
}
//停止拖动;
function stopDrag(obj)
{
	if(moveable)
	{
		var win = obj.parentNode;
		var sha = win.nextSibling;
		var msg = obj.nextSibling;
		win.style.borderColor     = normal;
		obj.style.backgroundColor = normal;
		msg.style.color           = normal;
		sha.style.left = obj.parentNode.style.left;
		sha.style.top  = obj.parentNode.style.top;
		obj.releaseCapture();
		moveable = false;
	}
}
//获得焦点;
function getFocus(obj)
{
	if(obj.style.zIndex!=index)
	{
		index = index + 2;
		var idx = index;
		obj.style.zIndex=idx;
		obj.nextSibling.style.zIndex=idx-1;
	}
}
//最小化;
function min(obj)
{
	var win = obj.parentNode.parentNode;
	var sha = win.nextSibling;
	var tit = obj.parentNode;
	var msg = tit.nextSibling;
	var flg = msg.style.display=="none";
	if(flg)
	{
		win.style.height  = parseInt(msg.style.height) + parseInt(tit.style.height) + 2*2;
		sha.style.height  = win.style.height;
		msg.style.display = "block";
		obj.innerHTML = "0";
	}
	else
	{
		win.style.height  = parseInt(tit.style.height) + 2*2;
		sha.style.height  = win.style.height;
		obj.innerHTML = "2";
		msg.style.display = "none";
	}
}
//关闭;
function cls(obj)
{
	var win = obj.parentNode.parentNode;
	var sha = win.nextSibling;
	win.style.visibility = "hidden";
	sha.style.visibility = "hidden";
}
//创建一个对象;
function xWin(id,w,h,l,t,tit,msg)
{
	index = index+2;
	this.id      = id;
	this.width   = w;
	this.height  = h;
	this.left    = l;
	this.top     = t;
	this.zIndex  = index;
	this.title   = tit;
	this.message = msg;
	this.obj     = null;
	this.bulid   = bulid;
	this.bulid();
}

//设定Cookie值
function SetCookie(name, value)
{
	var expdate = new Date();
	var argv = SetCookie.arguments;
	var argc = SetCookie.arguments.length;
	var expires = (argc > 2) ? argv[2] : null;
	var path = (argc > 3) ? argv[3] : null;
	var domain = (argc > 4) ? argv[4] : null;
	var secure = (argc > 5) ? argv[5] : false;
	if(expires!=null) expdate.setTime(expdate.getTime() + ( expires * 1000 ));
	document.cookie = name + "=" + escape (value) +((expires == null) ? "" : ("; expires="+ expdate.toGMTString()))
	+((path == null) ? "" : ("; path=" + path)) +((domain == null) ? "" : ("; domain=" + domain))
	+((secure == true) ? "; secure" : "");
}

//获得Cookie解码后的值
function GetCookieVal(offset)
{
	var endstr = document.cookie.indexOf (";", offset);
	
	if (endstr == -1)
		endstr = document.cookie.length;
		
	return unescape(document.cookie.substring(offset, endstr));
}

function DelCookie(name)
//删除Cookie
{
	var exp = new Date();
	exp.setTime (exp.getTime() - 1);
	var cval = GetCookie (name);
	document.cookie = name + "=" + cval + "; expires="+ exp.toGMTString();
}

function GetCookie(name)
//获得Cookie的原始值
{
	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 "";
}

function initialize()
{
	var isEditorMode = GetCookie('EditState');
	if (isEditorMode == '' || isEditorMode == null)
	{
		var isEditorMode = 0;//false;                        //true为编辑模式，false为正常模式
	}
	if (isEditorMode == 1)
	{
		return false;
	}
	
	var contentUrl = '/coach/coach.php';
	
	var a = new xWin("1",320,200,350,200,"<strong>您可以按以下步骤来进一步完善您的网站！</strong>","<iframe id='coach_content_iframe' src="+contentUrl+" frameborder=0 scrolling=no width='100%' height='100%'></iframe>");
}
window.onload = initialize;

