// 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://whitecompany.scene7.com/is-viewers-4.0";
	this.isRoot		= "http://whitecompany.scene7.com/is/image";

}
var company="whitecompany";
var S7ConfigClient		= new S7ConfigObject();
var small = "397";



function docWrite(line) {
    document.write(line);
}

