function scLayoutStrings()
{
	this.Manager = new Object();

	this.bPrimaryFSHorizontal = true
	this.sTopFrameURL = ''
	this.nTopFrameHeight = null
	this.bTopFrameResize = false
	this.nTopFrameBorder = null
	this.bTopFrameScroll = false
	this.sBottomFrameURL = ''
	this.nBottomFrameHeight = null
	this.bBottomFrameResize = false
	this.nBottomFrameBorder = null
	this.bBottomFrameScroll = true
	this.sLeftFrameURL = ''
	this.nLeftFrameWidth = 30
	this.bLeftFrameResize = false
	this.nLeftFrameBorder = null
	this.bLeftFrameScroll = false
	this.sRightFrameURL = ''
	this.nRightFrameWidth = null
	this.bRightFrameResize = true
	this.nRightFrameBorder = null
	this.bRightFrameScroll = true
	this.nHorizontalFSBorder = null
	this.nVerticalFSBorder = null
	this.sHorizontalFSBorderColor = ''
	this.sVerticalFSBorderColor = ''

	this.frameTop = new clFrameDescriptor( WSSFrameIDs.PRIMARYTOP, this.sTopFrameURL, this.nTopFrameHeight, this.bTopFrameResize, this.nTopFrameBorder, this.bTopFrameScroll, getFrameTitle(WSSFrameIDs.PRIMARYTOP) )
	this.frameBottom = new clFrameDescriptor( WSSFrameIDs.PRIMARYBOTTOM, this.sBottomFrameURL, this.nBottomFrameHeight, this.bBottomFrameResize, this.nBottomFrameBorder, this.bBottomFrameScroll, getFrameTitle(WSSFrameIDs.PRIMARYBOTTOM) )
	this.frameLeft = new clFrameDescriptor( WSSFrameIDs.PRIMARYLEFT, this.sLeftFrameURL, this.nLeftFrameWidth, this.bLeftFrameResize, this.nLeftFrameBorder, this.bLeftFrameScroll, getFrameTitle(WSSFrameIDs.PRIMARYLEFT) )
	this.frameRight = new clFrameDescriptor( WSSFrameIDs.PRIMARYRIGHT, this.sRightFrameURL, this.nRightFrameWidth, this.bRightFrameResize, this.nRightFrameBorder, this.bRightFrameScroll, getFrameTitle(WSSFrameIDs.PRIMARYRIGHT) )
}
var scLayout = new scLayoutStrings()

