// Splash Screen

imgpath = "/img/"

// menu

cart_out = new Image;
cart_up = new Image;
cart_out.src = imgpath +"cart.gif";
cart_up.src = imgpath +"cart-up2.gif";

cart1_out = new Image;
cart1_up = new Image;
cart1_out.src = imgpath +"cart.gif";
cart1_up.src = imgpath +"cart-up2.gif";

main_out = new Image;
main_up = new Image;
main_out.src = imgpath +"main.gif";
main_up.src = imgpath +"main-up.gif";

help_out = new Image;
help_up = new Image;
help_out.src = imgpath +"help.gif";
help_up.src = imgpath +"help-up.gif";


// The Function
function CI(name,img)
{
 name.src = img.src;
};


///////////////////////////////////////////////////////////
// open w2 window
function w2(url, name, width, height, scroll)
{
  var w2 = window.open(url, name,
'marginheight=0,marginweight=0,toolbar=no,width='+width+',height='+height+',left=20,top=20,resizable=no,scrollbars='+scroll);
  w2.focus();
}