  var myimages=new Array()  myimages[1]="back_tiraspol.jpg"  myimages[2]="back_pyongyang3.jpg"  myimages[3]="back_tokyo.jpg"  myimages[4]="back_moskau.jpg"  myimages[5]="back_chisinau.jpg"  myimages[6]="back_beijing.jpg"  myimages[7]="back_taipei.jpg"  myimages[8]="back_minsk.jpg"  myimages[9]="back_ulanbator.jpg"  myimages[10]="back_kuwait.jpg"  myimages[11]="back_vladivostok.jpg"  myimages[12]="back_hongkong.jpg"  myimages[13]="back_seoul.jpg"  myimages[14]="back_tirana.jpg"  myimages[15]="back_odessa.jpg"  myimages[16]="back_tirana2.jpg"  myimages[17]="back_doha.jpg"  myimages[18]="back_pyongyang4.jpg"  myimages[19]="back_pyongyang5.jpg"   var mycolor=new Array()  mycolor[1]="fbabab"  mycolor[2]="1970FF"  mycolor[3]="D62828"  mycolor[4]="536092"  mycolor[5]="E0DABB"  mycolor[6]="ECFF4D"  mycolor[7]="F20037"  mycolor[8]="3F6323"  mycolor[9]="9199B0"  mycolor[10]="E28D19"  mycolor[11]="CB67A3"  mycolor[12]="F58C1A"  mycolor[13]="338ACE"  mycolor[14]="d16422"  mycolor[15]="ffc818"  mycolor[16]="7fb3ce"  mycolor[17]="d44243"  mycolor[18]="d80129"  mycolor[19]="22f6bd"          var myover=new Array()  myover[1]="b7ffbb"  myover[2]="9900FF"  myover[3]="666666"  myover[4]="844348"  myover[5]="6E2514"  myover[6]="3D6145"  myover[7]="42272E"  myover[8]="E0D73D"  myover[9]="AB8031"  myover[10]="515814"  myover[11]="D8960D"  myover[12]="FCF82C"  myover[13]="C3066E"  myover[14]="6fb3f7"  myover[15]="00a9ff"  myover[16]="c0556d"  myover[17]="d5a047"  myover[18]="cfde50"  myover[19]="ffaf02"          var mybg=new Array()  mybg[1]="a89b90"  mybg[2]="59271E"  mybg[3]="7D5E63"  mybg[4]="BFA38D"  mybg[5]="000000"  mybg[6]="942E00"  mybg[7]="8C8E9B"  mybg[8]="6A6663"  mybg[9]="3C2A1C"  mybg[10]="24201F"  mybg[11]="6B6B6B"  mybg[12]="588D00"  mybg[13]="A0A4B0"  mybg[14]="9b938f"  mybg[15]="b79685"  mybg[16]="81776f"  mybg[17]="1f1b1c"  mybg[18]="7f9797"  mybg[19]="000000"            var mydesc=new Array()  mydesc[1]="Tiraspol, Transnistria, 2009"    mydesc[2]="Pyongyang, North Korea, 2008"  mydesc[3]="Tokyo, Japan, 2008"  mydesc[4]="Moscow, Russia, 2008"  mydesc[5]="Chisinau, Moldova, 2008"  mydesc[6]="Beijing, China, 2008"  mydesc[7]="Taipei, Taiwan, 2008"  mydesc[8]="Minsk, Belarus, 2007"  mydesc[9]="Ulan Bator, Mongolia, 2007"  mydesc[10]="Kuwait City, Kuwait, 2007"  mydesc[11]="Vladivostok, Russia, 2008"  mydesc[12]="Hongkong, 2006"  mydesc[13]="Seoul, South-Korea, 2007"  mydesc[14]="Tirana, Albania, 2009"  mydesc[15]="Odessa, Ukraine, 2009"  mydesc[16]="Tirana, Albania, 2009"  mydesc[17]="Doha, Qatar, 2009"  mydesc[18]="Pyongyang, North Korea, 2008"  mydesc[19]="Pyongyang, North Korea, 2008"       function setC(cn,value,expiredays)	{	var exdate=new Date();	exdate.setDate(exdate.getDate()+expiredays);	document.cookie=cn+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString());	}		     var ry;    function getC(cn)	{	if (document.cookie.length>0)  		{  		c_start=document.cookie.indexOf(cn + "=");  			if (c_start!=-1)    		{    			c_start=c_start + cn.length+1;     		c_end=document.cookie.indexOf(";",c_start);    		if (c_end==-1) c_end=document.cookie.length;    		return unescape(document.cookie.substring(c_start,c_end));    		}   		}	return "";	}  function checkC(){	var pc=getC('pic');	if (pc!=null && pc!=""){			ry= Number(pc)+1;		if (ry>=myimages.length) ry=1;		setC('pic', ry, 30);		//alert('cookie '+ry)			}else {		ry=Math.floor(Math.random()*myimages.length)		if (ry==0) ry=1;		setC('pic', ry, 30);		//alert('nocookie '+ry)	}	}				function checkI(){	var ic=getC('info');		if (ic!=null && ic!=""){						if (ic==1){								return "visible";			}else {				return "hidden";			}						}else{			return "visible";			setC('info', 1, 30);							}	}			    checkC();     	 	 	 		 	 document.write('<style type="text/css">')document.write('html, body {')document.write('	margin:0;')document.write('	padding:0;')document.write('width:100%;')document.write('height:100%;')document.write('	overflow:hidden;')document.write('background-color: #'+mybg[ry]+';')document.write('	font-size: 28px;')document.write('color: #'+mycolor[ry]+';')document.write('	font-family: Georgia, "Times New Roman", Times, serif;')document.write('	text-decoration: none;')document.write('}')document.write('#background{')document.write('position:absolute;')document.write('z-index:2;')document.write('width:100%;')document.write('}')document.write('#b2{')document.write('position:absolute;')document.write('z-index:3;')document.write('width:100%;')document.write('height:100%;')document.write('}')document.write('#background2{')document.write('color: #'+mybg[ry]+';')document.write('font-size: 10px;')document.write('position:absolute;')document.write('z-index:1;')document.write('width:100%;')document.write('}')document.write('#fixed {')document.write('	position:absolute;')document.write('top:25px;')document.write('left:10px;')document.write('	z-index:10;')document.write('}')document.write('.style2 {')document.write('color: #'+mycolor[ry]+';')document.write('font-family: Georgia,"Times New Roman", Times, serif;')document.write('text-decoration: none;')document.write('}')document.write('.style3 {')document.write('font-size: 11px;')document.write('	color: #'+mycolor[ry]+';')document.write('font-family: Georgia, "Times New Roman", Times, serif;')document.write('text-decoration: none;}')document.write('a:hover {')document.write('color: #'+myover[ry]+';')document.write('text-decoration: underline;')document.write('}')document.write('#infobox {')document.write('background-color:#'+mybg[ry]+';')document.write('width:20px;')document.write('height:30px;')document.write('z-index:12;')document.write('position:relative;')document.write('float:right;')document.write('margin-top:10px;')document.write('margin-right:10px;')document.write('padding:4px;')document.write('padding-top:2px;')document.write('}')document.write('#infobox2 {')document.write('background-color:#'+mybg[ry]+';')document.write('visibility:'+ checkI()+';')document.write('width:320px;')document.write('height:28px;')document.write('z-index:12;')document.write('position:relative;')document.write('float:right;')document.write('margin-top:10px;')document.write('margin-right:10px;')document.write('padding-top:2px;')document.write('padding:4px;')document.write('}')document.write('#copy{')document.write('	z-index:17;')document.write('	position:absolute;')document.write('margin:0 auto;')document.write('margin-left:10px;')document.write('clear:both;')document.write('bottom:10px;')document.write('padding:3px;')document.write('}')document.write('</style>')function MM_changeProp(objId,x,theProp,theValue) { //v9.0  var obj = null; with (document){ if (getElementById)  obj = getElementById(objId); }  if (obj){    if (theValue == true || theValue == false)      eval("obj.style."+theProp+"="+theValue);    else eval("obj.style."+theProp+"='"+theValue+"'");  }}