var pdrx = 0;

function Move(i)
    {
    if (i == pdrx)
        return;
    var Fon = document.getElementById('Itm' + pdrx);
    var Tit = document.getElementById('TitSpan' + pdrx);
    Fon.className = 'SendsOff';
    Tit.className = 'ViskazOff';
    var Fon = document.getElementById('Itm' + i);
    var Tit = document.getElementById('TitSpan' + i);
    Fon.className = 'SendsOn';
    Tit.className = 'ViskazOn';
    pdrx = i;
    }
    
function GaleryAction(url)
{	
    var w=850;
    var h=670;
	var attr;		
	attr = 'width='+w+',height='+h+',location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0,hotkeys=0';
	
	if ( parseInt(navigator.appVersion) >= 4 ) 
	{
		x = (screen.width - w) / 2;
		y = (screen.height - h) / 2;
		if( x<0 ) x=0;
		if( y<0 ) y=0;
		attr += ',xposition='+x+',left='+x+',yposition='+y+',top='+y;
	}

	win = window.open(url,"PhotoGalery",attr);
	win.focus();
}
