 function checkGenieVersion() {
	var query = window.location.search;
	if (query.length == 0)
		return;
	
	var genieBuild = parseInt(query.substring(query.indexOf("=") + 1,query.length)); 
 	if (vgenie > genieBuild) {
		document.write("<div style=\"color: red;\">A more recent version of GeNIe is available!. Please download it from the <a href=\"downloads.html\" class=\"link\">Download Section.</a></div><br />");
		//alert("A more recent version of GeNIe is available!");
	}
}

