// this function inserts a picture in the popup div element to create an enlarged picture
/*var asMenu=new Array(); // creates an array to hold the menu descriptions
var aiMenu=new Array(); // creates an array to hold the menu pictures
var sPicDiv=new String(""); // a string to hold the swapping div's name
// info on object example victorian holds info on victorian lamps
asMenu["victorian"]=" Handsewn shades with lace overlays, chiffon rosettes, fringe and or beads";
asMenu["character"]=" Sport themes, animal, fashion shades";
asMenu["teapot"]=" Ceramic teapots with floral arrangment, topped by a handcrafted shade.";
asMenu["prettyEveryday"]=" Makes a pretty focus in every room";
asMenu["orders"]=" Custom orders for your lamp.  I can use your existing lamp shade frame or provide a new one.";
asMenu["lighthouse"]=" Our popular lighthouse welcome lamps are perfect for any lakeside cottage or nautical themed decorating.";
asMenu["fabricBox"]="%A place to store your treasures.  Use them as gift giving boxes.";
asMenu["pin"]="%Adorn your purse, coat, backpack, diaper bag with original art work.";
asMenu["suncatcher"]="%Sugar beading makes these dazzle in the sun.";
asMenu["doll"]="%Sweet faces to use as Christmas tree ornaments, curtain tie backs, to hang anywhere.";
asMenu["penPencil"]="%Made from exotic hard woods, these desksets make great gifts for the college graduate, co-workers, bosses….";
asMenu["bank"]="%Make saving money more enjoyable with these handcrafted post office banks.";
asMenu["holiday"]=" Make your holidays shine with our holiday welcome lamps.";
asMenu["babyGifts"]=" Check out our new line of gift lamps for the new mom and dad.";
aiMenu["victorian"]=new Image(150,200);
aiMenu["character"]=new Image(150,200);
aiMenu["orders"]=new Image(150,200);
aiMenu["teapot"]=new Image(150,200);
aiMenu["lighthouse"]=new Image(150,200);
aiMenu["fabricBox"]=new Image(150,200);
aiMenu["pin"]=new Image(150,200);
aiMenu["suncatcher"]=new Image(150,200);
aiMenu["doll"]=new Image(150,200);
aiMenu["penPencil"]=new Image(150,200);
aiMenu["bank"]=new Image(150,200);
aiMenu["prettyEveryday"]=new Image(150,200);
aiMenu["orders"]=new Image(150,200);
aiMenu["holiday"]=new Image(150,200);
aiMenu["babyGifts"]=new Image(150,200);
aiMenu["victorian"].src="menu/Bluebell.jpg";
aiMenu["character"].src="menu/ModernTrain7.jpg";
aiMenu["orders"].src="menu/Mike.jpg";
aiMenu["teapot"].src="menu/DSC00496.jpg";
aiMenu["lighthouse"].src="menu/Lighthouse.jpg";
aiMenu["prettyEveryday"].src="menu/Roses.jpg";
aiMenu["fabricBox"].src="menu/Flowerbox.jpg";
aiMenu["pin"].src="menu/img_0014.jpg";
aiMenu["suncatcher"].src="menu/Img_0013.jpg";
aiMenu["doll"].src="menu/img_0004.jpg";
aiMenu["penPencil"].src="menu/pensets.JPG";
aiMenu["bank"].src="WebPictures/POBank.jpg";
aiMenu["holiday"].src="menu/PatrioticStars.jpg";
aiMenu["holiday"].src="menu/babygroup.jpg";
function showUp(sSrc,sAlt) {
	// Cindy wanted this not to happen
	/*sPicDiv="popup"+sAlt;// saves the id of the div
	if(sAlt.charAt(0)!="W") {
		document.getElementById('popup'+sAlt).innerHTML='<img src="http://www.shades-etc.com/novelty.htm" width="300" height="400">';
	} // end if
	else {
		document.getElementById('popup'+sAlt).innerHTML='<img src="http://www.shades-etc.com/novelty.htm" width="400" height="300">';
	} // end else
} // end function
// removes the picture from div element popup
function goAway() {
	// Cindy wanted this not to happen
	// document.getElementById(sPicDiv).innerHTML='';
} // end function
// displays the information for the menu on the right of it
function display(sId) {
	if(asMenu[sId].charAt(0)!="%") {
		var oBox=document.getElementById("displayBox");
	} // end if
	else {
		var oBox=document.getElementById("displayBox2");
	} // end else
	oBox.innerHTML='<table width="200" height="300" bgcolor="#CCC2CC" borderColor="#0033FF" border="1"><tr><td><center>'+document.getElementById(sId).innerText+'<br><img width="'+aiMenu[sId].width+'" height="'+aiMenu[sId].height+'" src="'+aiMenu[sId].src+'"><br>'+asMenu[sId].substr(1)+'</center></td></tr></table>';
} // end function
// clears the information for the menu when the mouse moves out of the menu box
function clearDisplay() {
	document.getElementById("displayBox").innerHTML="";
	document.getElementById("displayBox2").innerHTML="";
} // end function
*/