var q=0;

// JavaScript Document
function openFull(path)
{
	wnd = window.open(path, 'image','toolbar=no, menubar=no, width=900, height=650');	
	setTimeout("focusing(wnd);",100);
}

function focusing(wnd)
{	
	wnd.focus();	
}

function blinkGallery()
{
	setTimeout('blinkGallery()',400);	
	var el = document.getElementById("gallery");
	if (q%2==1)
	{
		gallery.style.color = 'tomato';
	}
	else 
	{
		gallery.style.color = '#ffffff';	
	}
	q++;
}
