/*
+--------------------------------------------------------------------------
| Get element by id
+--------------------------------------------------------------------------
*/

	function getbyid(id)
	{
		itm = null;
	
		if (document.getElementById)
		{
			itm = document.getElementById(id);
		}
		else if (document.all)
		{
			itm = document.all[id];
		}
		else if (document.layers)
		{
			itm = document.layers[id];
		}
	
		return itm;
	}



	function view_picture(address)
	{
		window.open( address, address, 'width=675,height=505,resizable=yes,scrollbars=yes');
	}



	function a_types(pic, title)
	{
		getbyid('aimage').innerHTML = '<img src="' + site_address + 'images/types/' + pic + '.jpg" />';
		getbyid('atitle').innerHTML = title;
	}
