
function popup_help()
{window.location.href = "http://www.origins.net/help/helpso.aspx";}

function popup_discussion()
{window.location.href = "http://www.origins.net/help/discussionso.aspx";}

function popup_articles()
{window.location.href = "http://www.origins.net/help/resarticles-so.aspx";}

function popup_about()
{window.location.href = "http://www.origins.net/help/aboutso.aspx";}

function popup_aboutigi()
{window.location.href = "http://www.origins.net/help/aboutso-igi.aspx";}

function popup_aboutorders()
{window.location.href = "http://www.origins.net/help/aboutso-orders.aspx";}

function popup_aboutplace()
{window.location.href = "http://www.origins.net/help/aboutso-place.aspx";}

function popup_aboutso()
{window.location.href = "http://www.origins.net/help/aboutso.aspx";}

//DO NOT DELETE
//INCLUDE IN ALL JSSource Pages
function windowOpener(url, name, args)
{
	if (typeof(popupWin) != "object")
	{
//alert("got here 1");
		popupWin = window.open(url,name,args);
		popupWin.focus();
	}
	else 
	{
		
		//alert("got here 2");
		//alert("newname: " + name);
			
		if (!popupWin.closed)
		{ 
		
		//alert("got here 3");
			
			
			if (!popupWin.name == name)
			{
				popupWin.location.href = url;
				popupWin.focus();
			}
			else
			{

				popupWin2 = window.open(url, name,args);
				popupWin2.focus();
			}
			
		} 
		else
		{
		
//		alert("got here 4");
			popupWin = window.open(url, name,args);
			popupWin.focus();
		}
			
		
	}

	
}