// Function: S7ConfigObject()
// Purpose: Constructor for the S7ConfigObject class
// Param: None
// Output: A new instantiated S7ConfigObject instance
// Notes: No need to use this function explicitly
function S7ConfigObject()
{
	this.isVersion		= "2.8";
	// These root variables should be altered to reflect the server VIP you are on
	// For example, if you call sample.scene7.com/is/image, you should use that here
	this.isViewerRoot	= "http://s7d1.scene7.com/is-viewers-3.7";
	this.isRoot		= "http://s7d1.scene7.com/is/image/";

}

var S7Config		= new S7ConfigObject();

