// JavaScript Document

var delay=5000 //set delay between message change (in miliseconds)

var fcontent=new Array()

begintag='' //set opening tag, such as font declarations-->

<!--Edit Questions here start: TO ELIMINATE A TEASER. ADD "//" IN FRONT "fcontent" and WHEN YOU INSERT A HARD RETURN INSERT "+" and TO INCLUDE QUOTATION MARKS IN YOUR CODE USE "\" before mark-->



fcontent[0]="Sotsgorbank, Moscow, raises a $10 million, ten year loan from World Business Capital (USA) with an OPIC guarantee. <br><br>Go <a href=\"javascript:void(0)\" onclick=\"cis_win=window.open('../../ivi/pages/Bank_press_release.pdf','cis','height=540,width=780,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes'); cis_win.focus();\">here</a> to read more."

fcontent[1]="Go <a href=\"javascript:void(0)\" onclick=\"cis_win=window.open('http://www.russiatoday.ru/guests/video/938','cis','height=540,width=780,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes'); cis_win.focus();\">here</a> to view video interview with Thomas Nastas, TV station, Russia Today "

fcontent[2]="AlwaysOn publishes  Scaling Up Innovation,  by Thomas Nastas in a six series article (English only) for their readers in VC and tech. <br><br>Go <a href=\"javascript:void(0)\" onclick=\"cis_win=window.open('http://alwayson.goingon.com/permalink/post/24212','cis','height=540,width=780,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes'); cis_win.focus();\">here</a> to read Part 1."

fcontent[3]="Thomas D. Nastas is elected to Board of Directors, Sotsgorbank, Moscow, as independent director at the AGM, 26 July 2007. <br><br>Go <a href=\"javascript:void(0)\" onclick=\"cis_win=window.open('../../ivi/pages/news_e_2007.htm','cis','height=540,width=780,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes'); cis_win.focus();\">here</a> to read more."

fcontent[4]="IVI and Shell Technology Ventures complete initiative to finance Russian technologies for the petroleum industry with four opportunities selected for additional due diligence.  IVI launches the CIS Oil/Gas Technology Consortium to continue our work with international corporations to finance Russian innovations and enterprises.<br><br><a href=\"javascript:void(0)\" onclick=\"cis_win=window.open('../../cis/pages/project.htm','cis','height=540,width=780,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes'); cis_win.focus();\">Continue</a>"


//fcontent[5]="5"

closetag=''


<!--Edit Questions here ends-->

var fwidth=136 //set scroller width

var fheight=80 //set scroller height



///No need to edit below this line/////////////////



var ie4=document.all&&!document.getElementById

var ns4=document.layers

var DOM2=document.getElementById

var faderdelay=0

var index=0



if (DOM2)

faderdelay=2000



//function to change content

function changecontent(){

if (index>=fcontent.length)

index=0

if (DOM2){

document.getElementById("fscroller").style.color="rgb(255,255,255)"

document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag

colorfade()

}

else if (ie4)

document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag

else if (ns4){

document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)

document.fscrollerns.document.fscrollerns_sub.document.close()

}



index++

setTimeout("changecontent()",delay+faderdelay)

}



frame=20;

hex=255  // Initial color value.



function colorfade() {	         	

// 20 frames fading process

if(frame>0) {	

hex-=12; // increase color value

document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.

frame--;

setTimeout("colorfade()",20);	

}

else{

document.getElementById("fscroller").style.color="rgb(0,0,0)";

frame=20;

hex=255

}   

}



if (ie4||DOM2)

document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:2px"></div>')



window.onload=changecontent

