// JavaScript Document
function ff_popup(){
	
	var DIVfourthfloorpopup = document.createElement("div");
	DIVfourthfloorpopup.setAttribute("id", "fourthfloorpopup");
	DIVfourthfloorpopup.style.display="none";
	
	var DIVclosebox = document.createElement("div");
	DIVclosebox.setAttribute("id", "fourthfloorpopupclose");
	DIVclosebox.innerHTML = "Click Here to Return to Site";
	DIVclosebox.onclick = new Function("ff_popup_hide()");
	
	IFRforeignSite = document.createElement("iframe");
	IFRforeignSite.setAttribute("id", "fourthfloorpopup_iframe");
	IFRforeignSite.setAttribute("src", "http://www.fourthfloorequipment.com/hosting_popup.html");
	
	
	DIVfourthfloorpopup.appendChild(DIVclosebox);
	DIVfourthfloorpopup.appendChild(IFRforeignSite);
	document.body.appendChild(DIVfourthfloorpopup);
	
	Effect.Appear("fourthfloorpopup");
}

function ff_popup_hide(){
	Effect.Fade("fourthfloorpopup");
	
}
