var incFontSize = true;

function toggleFontSize(){
	//alert(document.styleSheets[0].href)
	if(true == incFontSize)
		document.styleSheets[0].href = "scripts\\bigStyle.css"; 
	else
		document.styleSheets[0].href = "scripts\\style.css"; 
		
	incFontSize = !incFontSize;
	//alert(document.styleSheets[0].href)

}

function addbookmark()
{
	bookmarkurl = window.location.href;
	//bookmarkurl="http://www.icicinri.htm"
	//alert(bookmarkurl)
	bookmarktitle="ICICI Bank in Russia"
	if (document.all){
		window.external.AddFavorite(bookmarkurl,bookmarktitle)
	}
	else if (document.layers) {
  		bktext = open("", "displayWindow", "width=200,height=100,status=no,toolbar=no,menubar=no");
	  	bktext.document.open();
		bktext.document.write("<html><body bgcolor='white' text='black'>"+"Please Bookmark this Page." + "<br>Press CTRL+C after closing.<br><br>"+"<a href='javascript:self.close();'>Close this window</a>");
	    bktext.document.write("</font></body></html>");
	    bktext.document.close() ;
  }
  else{
	  
  }
}

function showFlash(){
	//alert('show')
	document.getElementById('flashSubs').style.display = 'none';
	document.getElementById('flashAnimations').style.display = 'block';
}

function hideFlash(){
	//ALERT('HIDE')
	document.getElementById('flashSubs').style.display = 'block';
	document.getElementById('flashAnimations').style.display = 'none';
}

