function PLink(Script,DIV) {
	Connection = false;
	try { Connection = new ActiveXObject("Msxml2.XMLHTTP"); }
	catch (e) { try { Connection = new ActiveXObject("Microsoft.XMLHTTP"); }
	catch (e) { try { Connection = new XMLHttpRequest(); }
	catch (e) { Connection = false; } } }
	if (!Connection) return null;
	
	try {
		Connection.open("GET",Script,true);
		Connection.onreadystatechange = function () {
			if (Connection.readyState == 4) { Output(Connection,DIV); }
		};
		Connection.send(Script);
	} catch(z) {
		return false;
	}
}

function Output(Result,DIV) {
	document.getElementById(DIV).innerHTML = Result.responseText;
	if (document.getElementById('execme')) {
		eval(document.getElementById('execme').innerHTML);
	}
	document.innerHTML = Result.responseText;
}