function swap_mnu_over(imageName) {
	document.getElementById(imageName).src = "images/mnu_"+imageName+"_hl.gif"; 
}
function swap_mnu_out(imageName) {
	document.getElementById(imageName).src = "images/mnu_"+imageName+".gif"; 
}
function itemDisplay(merchCategory, imageName, imageText) {
	var win=window.open('', '', 'status=yes,toolbar=no,menubar=no,height=500,width=625,top=50,left=50');
	win.document.open("text/html","");
	win.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
	win.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml">');
	win.document.writeln('<head>');
	win.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
	win.document.writeln('<title>Army Women&rsquo;s Foundation * Gift Shop * Merchandise</title>');
	win.document.writeln('<style type="text/css">');
	win.document.writeln('body {background-color:#000;}');
	win.document.writeln('body {color:#FFC425;}');
	win.document.writeln('body {font: normal .75em Arial, "Sans Serif";}');
	win.document.writeln('body {text-align:center;}');
	win.document.writeln('p {margin:0 0 10px 0; padding:0;}');	
	win.document.writeln('</style>');
	win.document.writeln('</head>');
	win.document.writeln('<body>');
	win.document.writeln('<p><img src="images/merchandise/'+merchCategory+'/plu'+imageName+'.jpg" /></p>');
	win.document.writeln('<p>'+imageText+'</p>');
	win.document.writeln('</body>');
	win.document.writeln('</html>');
	win.document.close();
}


