/*
  The original woprjs.js for WOPR Sława
  Created by Paco design
  http://www.wopr-slawa.pl
*/

function rozwers(ustc_id)
{
	var ustc = document.getElementById(ustc_id);
	
	if(ustc.style.height == 'auto')
		var height = 100;
	else
		var height = parseInt(ustc.style.height + '1');
	
	if(height % 10 == 0)
		if(height > 1)
		{
			ustc.style.height = (height - 20) + 'px';
			setTimeout('rozwers('+"'"+ustc_id+"'"+')', 30);
		}
		else
		{
			ustc.style.visibility = 'hidden';
			ustc.style.height = '1px';
		}
	else
	{
		if(ustc.style.visibility != 'visible')
			ustc.style.visibility = 'visible';
		if(height < 100)
		{
			ustc.style.height = height + 20 + 'px';
			setTimeout('rozwers('+"'"+ustc_id+"'"+')', 30);
		}
		else
			ustc.style.height = 'auto';
	}
	return true
}

function show_list(list_id)
{
	var list = document.getElementById(list_id);
	
	if(list.style.height == 'auto')
		var height = 100;
	else
		var height = parseInt(list.style.height + '19');
	
	if(height % 10 == 0)
		if(height > 20)
		{
			list.style.height = (height - 20) + 'px';
			setTimeout("show_list('"+list_id+"')", 30);
		}
		else
			list.style.height = '19px';
	else
	{
		if(height < 100)
		{
			list.style.height = height + 20 + 'px';
			setTimeout("show_list('"+list_id+"')", 30);
		}
		else
			list.style.height = 'auto';
	}
	return true
}

function zoom(url, width, height)
{
	var win = window.open(url, 'zoom','width=' + width + ', height=' + height +
																', resizable=0, scrollbars=no, menubar=no');
}
