function Total_offset() { if (navigator.userAgent.indexOf("MSIE") > -1) { this.x=0; this.y=-2; } else { this.x=0; this.y=-3; } } function show_menu_here(menu, locator) { var pos; pos = new Total_offset; pos = get_total_offset(locator.offsetParent, pos); pos.y += locator.offsetTop + locator.offsetHeight+2; pos.x += locator.offsetLeft; window.FW_showMenu(menu, pos.x, pos.y); } function get_total_offset(offset, total_offset) { var new_total; if (offset.offsetParent) { new_total = get_total_offset(offset.offsetParent, total_offset) ; new_total.x += offset.offsetLeft; new_total.y += offset.offsetTop; } else { new_total = new Total_offset; new_total.x = total_offset.x + offset.offsetLeft; new_total.y = total_offset.y + offset.offsetTop; } return new_total; } function wstatus(strStatus) { self.status="[" + strStatus + "]"; } function rstatus() { self.status="fitzmark"; } rstatus(); function ShowOptionTags(bShow) { // set the visibility of the option tags tags_list = document.getElementsByTagName("select"); for (var i = 0; i < tags_list.length; i++) { show_control(tags_list[i], bShow); } } function show_control(ctrl, b_show) { if (b_show) ctrl.style.visibility = "visible"; else ctrl.style.visibility = "hidden"; } rstatus(); function fwLoadMenus() { if (window.fw_menu) return; window.fw_menu = new Menu("root",160,20,"Arial, Verdana, Helvetica, sans-serif",12,"#FFFFFF","#FFFFFF","#F21213","#C70808"); fw_menu.addMenuItem("Hi-Vis/Coldstore/Fire Retardant Clothing","location='products.asp?d=1'"); fw_menu.addMenuItem("Workwear/Polo Shirts/Fleeces etc.","location='products.asp?d=2'"); fw_menu.addMenuItem("Sportswear & Childrenswear","location='products.asp?d=3'"); fw_menu.addMenuItem("Promotional Gifts & Items","location='products.asp?d=6'"); fw_menu.hideOnMouseOut=true; window.fw_menu.writeMenus(); }