/*================================================================
Created:2007-5-29
==================================================================*/

var installdir='/';           //系统安装目录，请正确填写。如安装在www目录下，请设为 installdir='/www/'
function LabelAjax()
{
var XmlHttp;
	//windows
	try {
		XmlHttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");
	} catch (e) {
		try {
			XmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				XmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {
				XmlHttp = false;
			}
		}
	}
	//other
	if (!XmlHttp)
	{
		try {
			XmlHttp = new XMLHttpRequest();
		} catch (e) {
			XmlHttp = false;
		}
	}
	return XmlHttp;
}
function js_iframe(jsCode)
{
var jsIframe = document.createElement("iframe");
jsIframe.style.display = "none";//none iframe
document.body.appendChild(jsIframe);
	with(window.frames[window.frames.length - 1]){
	document.open();
	document.write(jsCode); //perform JS
	document.close();
	}
document.body.removeChild(jsIframe);//del iframe
}
