// JavaScript Document
/*
IEGateway.prototype.init = function (){
	var temp = window.onload;
	
	window.onload = function (){
		if (temp) temp();
		for (var i = 0; i < iegw.objects.length; i++)
		{
			iegw.objects[i].outerHTML = iegw.objects[i].outerHTML;
		}	
	}
}
*/
function IEGateway (stringobject){
	document.write (stringobject);
	
	
	window.onload = function (){
		var content = document.getElementById ("Content_hide");
		
		if (content){
			content.style.display = "none";
			content.style.visibility = "hidden";
		}
	}
}