/*
Filename: wn_load_home.js
Version: 1.0
Date: 10/05/2000
Notes: This document will store the variables to generate the graphics
needed to create the "What's New" box for the GEMS Home Page.

This file is dynamically generated... DO NOT EDIT!

Variable declarations:
wnbox_maxrecs = The maximum number of items to display in the box
wnbox_top_imgname = The path to the "What's New @" image file at the top of the box
wnbox_top_imgwidth = The "What's New @" image width, in pixels
wnbox_top_imgheight = The "What's New @" image height, in pixels
wnbox_top_alt = The "What's New @" image alt tag text
wnbox_bot_img = The path to the image file at the bottom of the box
wnbox_bot_imgwidth = The bottom image width, in pixels
wnbox_bot_imgheight = The bottom image height, in pixels
wnbox_bot_alt = The bottom image alt tag text
wnbox_itemarray_text = This array defines the text that is displayed in the box
wnbox_itemarray_link = This array defines the destination links for the items displayed in the box
wnbox_itemarray_frimg = This array defines the image to display in front of the item text (not required)
wnbox_itemarray_bkimg = This array defines the image to display at the end of the item text (not required)
*/
wnbox_maxrecs = 3;

wnbox_top_img = "/images/whatsnew/wn_box_top.gif";
wnbox_top_imgwidth = 171;
wnbox_top_imgheight = 45;
wnbox_top_alt = "New @ GE Medical Systems";
wnbox_top_link = "";

wnbox_bot_img = "/images/whatsnew/wn_box_item_img.gif";
//wnbox_bot_img = ""
wnbox_bot_imgwidth = 163;
wnbox_bot_imgheight = 50;
wnbox_bot_alt = "Open Speed Bar Animation";
wnbox_bot_link = "/test.html";

wnbox_itemarray_text = [
"TDK Media Madness Promotion",
"Try New MR FlexTrial Software Options",
"Breakthrough 2000 technology on LOGIQ 700 EXPERT Series"
]
wnbox_itemarray_link = [
"/item1.html",
"/item2.html",
"/item3.html"
]
wnbox_itemarray_frimg = [
"",
"",
""
]
wnbox_itemarray_bkimg = [
"",
"",
""
]
