﻿var configRegPath,configSSLPath;
function GetRASitePaths(regularPath,sslPath)
{
	var message = '';
	var context = '';
	__docallback('__Page',message,ProcessRAPath,context,OnPathRetrievalError);
	
}

function ProcessRAPath(returnString,context)
{
	var pathValues;
	if(returnString.indexof(';') > -1)
	{
		pathValues = returnString.split(';');
		configSSLPath = pathValues[0];
		configRegPath = pathValues[1];
	}
	else
	{
		configRegPath  = "http://www.rolledalloys.com";
		configSSLPath = "https://www.rolledalloys.com";
	}
}
function OnPathRetrievalError()
{

}