var k = getQueryString("k");
var r = getQueryString("r");
var tips = "网址："+k+" ";

switch(r)
{
	case "4":
		tips += "页面不存在！";
		break;
	case "3":
		tips += "DNS解析错误！";
		break;
	default:
		tips += "无法访问！";
}
tips += "<div style=\"float:right;height:24px;width:310px;overflow:hidden;position:relative;\"><div style=\"height:24px;position:absolute;top:4px;left:-120px;\">"+$("gtips").innerHTML+"</div></div>";
if(k)
{
	var ff = document.createElement("div");
	ff.id="tipsdiv";
	ff.style.backgroundColor = "#FFFFBB";
	ff.style.textAlign = "center";
	ff.style.padding = "4px 0 0 4px";
	ff.style.font = "12px/24px Tahoma";
	ff.style.color = "#000";
	ff.style.borderBottom = "#ffd532 1px solid";
	ff.style.borderLeft = "#ffd532 1px solid";
	ff.style.borderRight = "#ffd532 1px solid";
	ff.style.width = "952px";
	ff.style.height = "24px";
	ff.style.position = "relative";
	ff.innerHTML = "<img src=\"/images/top.png\" style=\"position:relative;top:3px;right:10px;\">"+tips+"<a target=\"_self\" href=\"#\" onclick=\"javascript:$('tipsdiv').style.display = 'none';return false;\" title=\"关闭提示\" style=\"position:absolute;top:10px;right:10px;\"><img src=\"/images/shut.gif\" border=\"0\"></a>";
	var b = document.body;
	b.insertBefore(ff,b.firstChild);
}