function StartImage (URL)
{
	w = 800+5*2+5+20;
	h = 600+5*2+80;
	imgwindow = window.open(URL,"imgwindow"," scrollbar=no, toolbar=no, fullscreen=no, resizable=yes,width="+w+",height="+h);
	imgwindow.focus();
}


function Start ()
{
	add=2;
	if (document.all.cels.length)
	{
		for (i=0; i < document.all.cels.length; i++)
		{
			document.all.cels[i].width = 100 + 5*2+add;
			document.all.cels[i].height = 100 + 5*2+add;
		}
	}

	if (document.all.cels2.length)
	{
		for (i=0; i < document.all.cels2.length; i++)
		{
			document.all.cels2[i].width = 100 + 5*2;
			//document.all.cels[i].height = 100 + 5*2;
		}
	}

}

