<!--
function tanya(){

stop = 0;
sleft = screen.width-160;

vladmatrix=window.open("","atc","height=150,width=150,resizable=no,scrollbars=yes,status=no,menubar=no,toolbar=no,top="+ stop+",left="+sleft);
vladmatrix.location="world.php";

}

function addf()
{
if(navigator.appName=="Microsoft Internet Explorer")
{
window.parent.external.AddFavorite(window.top.location.href,window.top.document.title);
}
else
{
alert("| Press key CTRL + D , add this page in bookmarks |");
}
}


// 2222222222222

//onMouseover Scrollbar Vladislav Gurabanidze
//Submitted


/*---------------[IE 5.5 Scrollbars colorer]--------------------*/
function scrollBar(line,face,theme)
	{
		if (!line||!face)
			{
				line=null;
				face=null;
				switch(theme) // Predefined themes
					{
						case "blue":
							var line="#78AAFF";
							var face="#EBF5FF";
							break;
					
						case "green":
							var line="black";
							var face="#2E3E1F";
							var theme="#E58900";
							break;
					
					}
			}

				with(document.body.style)
					{
						scrollbarDarkShadowColor=line;
						scrollbar3dLightColor=line;
						scrollbarArrowColor=theme;
						scrollbarBaseColor=face;
						scrollbarFaceColor=face;
						scrollbarHighlightColor=face;
						scrollbarShadowColor=face;
						scrollbarTrackColor="#000000";
					}
			}

/*------------------[Pointer coordinates catcher]---------------*/
function colorBar(){
		var w = document.body.clientWidth;
		var h = document.body.clientHeight;
		var x = event.clientX;
		var y = event.clientY;
		if(x>w) scrollBar('black','#555555','#FFFFFF'); // Your colors
		else scrollBar(null,null,"green"); // A predefined theme
	}

if (document.all){
scrollBar(null,null,"green");
document.onmousemove=colorBar;
}
//-->
