<!--
//半透明背景登录样式
document.writeln("<style type=\"text\/css\">");
document.writeln("body{margin:0 0 4px 0!important;margin:0 0 4px 0}");
document.writeln(".f12 {FONT-SIZE: 12px; LINE-HEIGHT: 20px}");
document.writeln(".b2{padding:10px;line-height:22px;font-size:14px}");
document.writeln(".ip{width:120px;height:22px;font-size:14px}");
document.writeln(".f14{font-size:14px}");
document.writeln(".DivTipShow {font-style:normal;background-color:#fff;position:absolute;z-index:10000;display:none;font-size:14px}");
document.writeln(".DivTip {display:none;position:absolute;left:0;top:0;z-index:9996;font-weight:bold;background-image:url(\/-\/imgs\/bgcg.png);_background-image:none;_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=scale src=\'\/-\/imgs\/bgcg.png\')}");
document.writeln("\/*.item{color:#F00;display:none;font-size:12px}*\/");
document.writeln(".f13{font-size:12px;padding-left:55px}");
document.writeln("#DivCng{width:60%;padding:5px}");
document.writeln("#DivCng div{background:#7c7c7c;padding:5px}");
document.writeln("#DivCng div div{border:1px solid #7c7c7c;margin:-10px 0 0 -10px;background:#fff;padding:10px}");
document.writeln("<\/style>");

//location.hash;作用为URL#55
function G(id)
{
	return document.getElementById(id);	
}
function buildDivTip()
{
	var disww=window.document.body.offsetWidth-28;
	var dishh=window.document.body.offsetHeight-60;
    document.write('<div id="DivTip" class="DivTip" style="width:' + disww +'px;height:' + (dishh+70) +'px!important;'+dishh+'px"></div>');
}
//参数：div的ＩＤ，div的宽,div的高,div的
function sshowDiv(divId,divW,divH,divL,divT) 
{
	var DivID = "";
	DivID = divId;
	G('DivTip').style.display = "block";
    G(divId).style.width = '268px';
    G(divId).style.height = '200px';
    G(divId).style.left = screen.width/4;//'160px';
    G(divId).style.top = screen.height/5;//'95px';
//	G(divId).innerHTML = document.getElementById(divId).innerHTML;
	G(divId).className = 'DivTipShow';
	G(divId).style.display = "block";
	G("TxtUser").focus();
}
function checkLogin()
{
	G("DivTip").style.display="";
	G("DivCng").style.display = "";
	//location.reload();
}
/*
使用方法
buildDivTip();
sshowDiv('DivCng','400','160',screen.width/4,screen.height/4);
*/
-->
