// ----------------------------------------------------------------------------
// Script Copyright © JomiTech 2006. All Rights Reserved.
// ----------------------------------------------------------------------------

function popupImage( pic )
{
	var URL = "screenshots/" + pic;
	var WWidth, WHeight;
	
	WWidth = Math.min( screen.availWidth, 1020 );
	WHeight = Math.min( screen.availHeight, 760 );
	
	var Wnd = window.open( URL, "JTScreenShotWnd", "height=" + WHeight + ",left=0,location=0,menubar=0,resizable=1,screenX=0,screenY=0,scrollbars=1,status=0,toolbar=0,top=0,width=" + WWidth );
	Wnd.focus();
}

function showNews()
{
	document.getElementById("newsbox").style.visibility = "visible";
	document.getElementById("stdbox").style.visibility = "hidden";
	document.getElementById("prebox").style.visibility = "hidden";
}

function showStd()
{
	document.getElementById("newsbox").style.visibility = "hidden";
	document.getElementById("stdbox").style.visibility = "visible";
	document.getElementById("prebox").style.visibility = "hidden";
}

function showPre()
{
	document.getElementById("newsbox").style.visibility = "hidden";
	document.getElementById("stdbox").style.visibility = "hidden";
	document.getElementById("prebox").style.visibility = "visible";
}