function G(id)
{
	return document.getElementById(id);
}
//信息框
function ShowBoard()
{
	var DialogHeight=300;
	var DialogWidth=480;
if(G("g_Dialog")==null)
	{
var StrDialog='<div style="text-align:right; line-height:20px; padding-right:15px; color:#ffffff; cursor:pointer; background:#999999;" onclick="closedialog()"> 关闭 </div>';
StrDialog+='<iframe frameborder="0" height="'+DialogHeight+'" width="'+DialogWidth+'" hspace="0" hspace="0" vspace="0" scrolling="no" marginheight="0" marginwidth="0" src="/board.aspx"></iframe>';
var cssstr='height:'+DialogHeight+'px; width:'+DialogWidth+'px; position:absolute; font-size:12px; ';
var oDiv=document.createElement("div");
oDiv.id="g_Dialog";
oDiv.style.cssText =cssstr;
document.body.appendChild(oDiv);
id="g_Dialog";
G("g_Dialog").innerHTML=StrDialog;
G(id).style.top=String(document.documentElement.scrollTop)+"px";//G(id).offsetHeight+
G(id).style.left=String(document.documentElement.scrollLeft)+"px";//G(id).offsetWidth+
	}
	else
	{
		closedialog();
			ShowBoard();
			
		}
}
function closedialog()
{
	var oDiv=G("g_Dialog");
	document.body.removeChild(oDiv);
}
//信息框结束

