var systemad_path = 'http://filebase.to/';

var systemad_html = '<div id="systemad_container" style="position: absolute; left: 0px; top: 0px; z-index: 9999; height: 0; border-bottom: 1px solid #404040; width: 100%; overflow: hidden;"><div id="systemad_background" style="background: #ffffe1; border-bottom: 1px solid #808080; height: 35px; position: relative; width: 100%; cursor: pointer;"><img src="' + systemad_path + 'systemad/images/icon.gif" style="position: absolute; left: 6px; top: 6px;" /><img id="systemad_close" src="' + systemad_path + 'systemad/images/close.gif" onclick="hide_systemad();" style="position: absolute; right: 9px; top: 14px; cursor: pointer;" /><div style="left: 37px; height: 35px; line-height: 36px; font-size: 12px; font-family: Arial, Tahoma, Verdana; color: #000000; position: absolute; width: 90%;" onclick="systemad_goto();">' + systemad_text + '</div></div></div>';

var systemad_timeout = '';

function show_systemad() {

	var systemad_div = document.getElementById('systemad_container');
	var systemad_height_increase = Math.ceil((36-0)/12);
	var systemad_current_height = parseInt(systemad_div.style.height.substring(0,systemad_div.style.height.length - 2));

	if (systemad_current_height < 36) {

		systemad_current_height += parseInt(systemad_height_increase);
		systemad_div.style.height = systemad_current_height+'px';
		var systemad_timeout = window.setTimeout('show_systemad()',200/12);

	} else {

		window.clearTimeout(systemad_timeout);

	}

}

function hide_systemad() {

	var systemad_div = document.getElementById('systemad_container');
	systemad_div.style.display = 'none';	

}

function systemad_goto() {

	window.location.href = systemad_url;

}

document.write(systemad_html);
show_systemad();
