function printOrder(_url)
{/*   version 1.4.0.00 */
   printWindow = window.open(_url,
                       "printWindow","toolbar=0, location=0, status=1, resizable=1, menubar=1, "+
                       "scrollbars=1, width=750, height=540");
   printWindow.focus();
}

/*
 * Home Page Tabs Menu
 */

function showTab(obj, id)
{
	var item;
	var container;
	
	hideAllTabs();
	
	switch (id)
	{
		case 2:
			item = document.getElementById("tab_item_2");
			container = document.getElementById("tab_container_2");	
			break;
			
		case 3:
			item = document.getElementById("tab_item_3");
			container = document.getElementById("tab_container_3");
			break;

		case 4:
			item = document.getElementById("tab_item_4");
			container = document.getElementById("tab_container_4");
			break;
			
		default:
			item = document.getElementById("tab_item_1");
			container = document.getElementById("tab_container_1");
			break;
	}
	
	//~ alert(obj);
	obj.parentNode.className = 'active';
	
	item.className = "selected";
	container.style.display = "block";
}

function hideAllTabs()
{
	var container;
	
	container = document.getElementById("tab_container_1");
	container.style.display = 'none';
	
	container = document.getElementById("tab_container_2");
	container.style.display = 'none';

	container = document.getElementById("tab_container_3");
	container.style.display = 'none';

	container = document.getElementById("tab_container_4");
	container.style.display = 'none';
}

function Katalog_popup()
{
	var MyWindow =  window.open('http://novito.cmass2.info/pageflip',
									"Webkatalog",
									"width=1020,height=700,left=0,top=0,scrollbars=no,menubar=no,status=no,resizable=no,locationbar=no;");
	MyWindow.focus();
}

