// shared.js script, version 2.1, 08-13-03, Hot Pepper, Inc., http://www.hotpepper.com // img preloads ===================================================== /* hh = new Image(); hh.src = d+"pix/hh.gif"; hh_roll = new Image(); hh_roll.src = d+"pix/hh_roll.gif"; hh = new Image(); hh.src = d+"pix/hh.jpg"; hh_roll = new Image(); hh_roll.src = d+"pix/hh_roll.jpg"; */ nv_box = new Image(); nv_box.src = "/pix/nv_box.gif"; nv_box_roll = new Image(); nv_box_roll.src = "/pix/nv_box_roll.gif"; arrow_previous = new Image(); arrow_previous.src = d+"pix/arrow_previous.gif"; arrow_previous_roll = new Image(); arrow_previous_roll.src = d+"pix/arrow_previous_roll.gif"; arrow_next = new Image(); arrow_next.src = d+"pix/arrow_next.gif"; arrow_next_roll = new Image(); arrow_next_roll.src = d+"pix/arrow_next_roll.gif"; // /img preloads ===================================================== // popup window functions ========================================== function popFlex(URL,winName,W,H,scroll) { if (scroll == "no") {scroll = "scrollbars=no";} else if (scroll == "yes") {scroll = "scrollbars";} window.open(URL, winName,"top=0,left=30,width="+W+",height="+H+",resizable=no,"+scroll+""); } // /popup window functions ==========================================