	function showPopUp(winLeft, winTop, winWidth, winHeight, winScroll, winResize, winUrl)  {
		winFeatures = "top=" + winTop + ",left=" + winLeft + ",width=" + winWidth + ",height=" + winHeight + ",scrollbars=" + winScroll + ",resizable=" + winResize + ",directories=no,location=no,menubar=no,status=no,toolbar=no";
		winPop = window.open(winUrl, "winPop", winFeatures);
		return false;
	}

	function ShowPopWithText(CategoryList,PopItem,NameofWindow) {
		popupWindow=window.open("",'',"location=no,menubar=no,scrollbars=yes,status=no,toolbar=no,width=425,height=500"); 
		popupWindow.document.write('<link rel="STYLESHEET" type="text/css" href="/StoreFront/jsp/stylesheets/ccisolutions.css">');  
		popupWindow.document.write('<link rel="STYLESHEET" type="text/css" href="/StoreFront/jsp/stylesheets/cci.css">');  
		popupWindow.document.write('<table width="100%" height="100%"><tr valign="top" align="center"><td width="260" align="center"><img border="0" align="middle" src="/StoreFront/jsp/images/ccisolutionsLogoHeader.gif" alt="CCI Solutions is your leader in Professional Audio, Lighting and Video Products"></td></tr><tr><td style="vertical-align:top;padding-left:15px;padding-right:10px;">');
		popupWindow.document.write(PopupArray[CategoryList][PopItem]);  
		popupWindow.document.write('</td></tr><tr valign="baseline"><td align="right"><form><input type=button value="Close This Window" onClick="javascript:window.close();"></form></td></tr></table>');
		popupWindow.focus();
	}
