var openDivID  = "openDiv";//弹出层的id

var openDivWidth  = 300;//弹出层宽度
var openDivHeight = 200;//弹出层高度
openDivHeight += 20;
var openDivTimeout_delay = 1000 * 0;//弹出层延迟显示时间，单位：毫秒
var openDivTimeout = 1000 * 60;//弹出层显示时间，单位：毫秒

function openDiv_click()
{
	document.getElementById(openDivID).style.display = 'block';
	document.getElementById(openDivID).style.left = 0;
	document.getElementById(openDivID).style.top = 0; 
	//document.getElementById(openDivID).style.left = (document.body.clientWidth - parseInt(document.getElementById(openDivID).style.width))/2;
	//document.getElementById(openDivID).style.top = (document.body.clientHeight - parseInt(document.getElementById(openDivID).style.height))/2; 

}

function closeDiv_click()
{
	document.getElementById(openDivID).style.display = 'none';
}


function doopen(htmurl)
{
	document.write("<style type=\"text/css\"> #" + openDivID + "{ display: none; position: absolute; background: #FFF; z-index: 1002; overflow: hidden; } </style><div id=\"" + openDivID + "\" style=\"width: " + (openDivWidth) + "px; height: " + (openDivHeight) + "px; border: 1px solid #62748C;\"><table width=\"100%\" height=\"100%\"border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr style=\"font-weight: bold; \"><td width=\"10%\" height=\"20\" align=\"left\" background=\"http://www.gxnews.com.cn/images/index_bg_xx.jpg\" style=\"padding-left: 3px; \"><img src=\"http://www.gxnews.com.cn/images/index_close.jpg\"  width=\"15\" height=\"13\" onClick = \"javascript: closeDiv_click(); \" style=\"cursor: pointer\" alt=\"关闭\" title=\"关闭\"></td><td width=\"80%\" align=\"center\" background=\"http://www.gxnews.com.cn/images/index_bg_xx.jpg\" style=\"font-size: 12px;\"><img src=\"http://www.gxnews.com.cn/images/index_logo_tm.gif\"  height=\"20\" style=\"margin-right: 3px; \" align=\"absmiddle\">广西新闻网弹出窗口</td><td width=\"10%\" align=\"right\" background=\"http://www.gxnews.com.cn/images/index_bg_xx.jpg\" style=\"padding-right: 3px; \"><img src=\"http://www.gxnews.com.cn/images/index_close.jpg\"  width=\"15\" height=\"13\" onClick = \"javascript: closeDiv_click(); \" style=\"cursor: pointer\" alt=\"关闭\" title=\"关闭\"></td></tr><tr><td colspan=\"3\" height=\"" + openDivHeight + "\"><iframe id=\"iframeUploadFile\" src=\""+htmurl+"\" width=\"100%\" height=\"100%\" scrolling=\"no\" frameborder=\"0\" style=\"margin: 0px; padding: 0px; border: 0px solid #000; \"></iframe></td></tr></table></div>");


	setTimeout('openDiv_click()', openDivTimeout_delay);//显示

	setTimeout('closeDiv_click()', parseInt(openDivTimeout_delay) + parseInt(openDivTimeout));//隐藏
}
