var flPhotoCount=164;


// Open popup window
function OpenWindow(PageName)
{ 		
	var 		
	width	= Math.round(screen.width*4/5),
	height 	= Math.round(screen.height*4/5);
			
	var
	left 	= (screen.width - width)/2,
	top 	= (screen.height - height)/2;
				
	window.open(PageName, "stephenking", "location=0, directories=0, menubar=0, toolbar=0, scrollbars=1, noresize, width="+width+", height="+height+", left="+left+", top="+top);

	return false;
}

var rusChars = new Array('à','á','â','ã','ä','å','¸','æ','ç','è','é','ê','ë','ì','í','î','ï','ð','ñ','ò','ó','ô','õ','÷','ö','ø','ù','ý','þ','\ÿ','û','ú','ü', ' ', '\'', '\"', '\#', '\$', '\%', '\&', '\*', '\,', '\:', '\;', '\<', '\>', '\?', '\[', '\]', '\^', '\{', '\}', '\|', '\!', '\@', '\(', '\)', '\-', '\=', '\+', '\/', '\\', '\.');
var transChars = new Array('a','b','v','g','d','e','jo','zh','z','i','j','k','l','m','n','o','p','r','s','t','u','f','h','ch','c','sh','csh','e','ju','ja','y','', '', '_', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '');
var from = "";

// Transliterate a value
function translit(from)
{
	from = from.toLowerCase();
	var to = "";
	var len = from.length;
	var character, isRus;
	for(var i=0; i < len; i++)
    {
		character = from.charAt(i,1);
		isRus = false;
		
		for(var j=0; j < rusChars.length; j++)
		{
			if(character == rusChars[j])
			{
				isRus = true;
				break;
			}
		}
		
		to += (isRus) ? transChars[j] : character;
    }
   
   return to;
}



