
	var view;
	function setClass(view)
	{
		var classN = "inactive";
		var arLinks = document.getElementsByTagName("a");
		var ct = (arLinks.length);
		for (var i=0; i<ct; i++)
		{
			arLinks[i].className = "inactive";
		}
		view.className = "active";
	}
	function getView(view)
	{
		var placeholder = document.getElementById("placeholder");
		var source = view.getAttribute("href");
		placeholder.setAttribute("src", source);
		setClass(view);
	}
	
	
	function openContact()
	{
		var height=500;
		var width=600;
		var newLeft = (window.screen.availWidth - width) / 2;
		var newHeight = (window.screen.availHeight - height) /2;
		var url = "index.php?method=main.contact";
		var contactWin = window.open(url,'ssWin','height=' + height + ',width=' + width + ',left=' + newLeft + ',top=' + newHeight + ',menubar=0,status=0,scrollbars=0,directories=0,resizable=1');
		contactWin.focus();
	}

