/*
	Copyright (C) 2007 Reload Entertainment
	Author: Manolis Koukopoulos
	
	All Rights Reserved.
	
	You are not allowed to use this script for any purpose
	without	the authors permission.
	Using this script part or whole without the authors permissions
	violates copyright infrigment law.
*/

function gebi(elem){
	return document.getElementById(elem);
}

// XHR Operations
function createXHR() {
	if (window.XMLHttpRequest)
		var req = new XMLHttpRequest();
	else if(window.ActiveXObject)
		var req = new ActiveXObject("MSXML2.XMLHTTP.3.0");
	return req;
}


function showContactFl(){
	var req = createXHR();
	req.onreadystatechange = function() {
		if (req.readyState == 4 && req.status == 200 && req.responseText) { // Complete
			gebi('div_flcont').innerHTML = req.responseText;
		}
	};
	req.open("GET", "includes/flcontact.php");
	req.send("");
}