function setActive(id_s)
{
	if(id_s)
	{
		var current_de = document.getElementById(id_s);

		current_de.className = 'active';
	}
}

function getPopup(location_s)
{
	var window_o = new window_c();

	window_o.setName('print_location');
	window_o.setLocation(location_s);
	window_o.setMinimal();

	window_o.setProperty('width', 500);
	window_o.setProperty('height', 500);
	window_o.setProperty('scrollbars', 'yes');

	window_o.setCentered();

	var document_o = window_o.setOpen();
}

function getLargePopup(location_s)
{
	var window_o = new window_c();

	window_o.setName('print_location');
	window_o.setLocation(location_s);
	window_o.setMinimal();

	window_o.setProperty('width', 700);
	window_o.setProperty('height', 600);
	window_o.setProperty('scrollbars', 'yes');
	window_o.setProperty('resizable', 'yes');

	window_o.setCentered();

	var document_o = window_o.setOpen();
}