// Function opens up the beading catalog window
function GetBeadingCatalog()
{
	
	
	// Get the screen width and height
	var ScreenWidth = screen.width;
	var ScreenHeight = screen.height;
	
	
	
	// Determine the top and left positions based on the screen properties
	var Left = ((ScreenWidth - 1031) / 2);
	var Top = ((ScreenHeight - 800) / 2);
	
	
	
	// Set the new window properties
	var Window = "/tss/dynamic/catalogs/beading.htm";
	var Properties = "width=1031, height=800, top=" + Top + ", left=" + Left;
	
	
	
	// Open up the new window
	window.open(Window, "null", Properties);
	
	
}





// Function opens the 2009 beading catalog
function GetBeadingCatalogLarge()
{
	
	// Get the screen width and height
	var ScreenWidth = screen.width;
	var ScreenHeight = screen.height;
	
	
	
	// Determine the top and left positions based on the screen properties
	var Left = ((ScreenWidth - 1100) / 2);
	var Top = ((ScreenHeight - 750) / 2);
	
	
	
	// Set the new window properties
	var Window = "/tss/dynamic/catalogs/beading/books.html";
	var Properties = "width=1100, height=750, top=" + Top + ", left=" + Left;
	
	
	
	// Open up the new window
	window.open(Window, "null", Properties);
	
}






// Function opens the hobby catalog window
function GetHobbyCatalog()
{
	
	
	// Get the screen width and height
	var ScreenWidth = screen.width;
	var ScreenHeight = screen.height;
	
	
	
	// Determine the top and left positions based on the screen properties
	var Left = ((ScreenWidth - 1100) / 2);
	var Top = ((ScreenHeight - 750) / 2);
	
	
	
	// Set the new window properties
	var Window = "/tss/objects/flash/hobby_catalog/tss3.html";
	var Properties = "width=1100, height=750, top=" + Top + ", left=" + Left;
	
	
	
	// Open up the new window
	window.open(Window, "null", Properties);
	
	
}
