
// ..................................................................

function changeArrow(id, src)
{
	arrow = document.getElementById("arrow-" + id);
	arrow.src = src;
	return false;
}

// ..................................................................

function wop(href, title, scroll, resizable, width, height)
{
	if(scroll != "yes")
		scroll = "no";

	if(resizable != "yes")
		resizable = "no";

	window.open(href, title, 'toolbar=no, scrollbars=' + scroll + ', menubar=no, directories=no, status=no, resizable=' + resizable + ', width=' + width + ', height=' + height);

	return false;
}

// ..................................................................
