
  var arPhotos = new Array(
    new Array('p_1412','<br>P-1412 TOFFEE<br>(B Base)'),
    new Array('p_3029','<br>P-3029 NANTUCKET<br>(B Base)'),
    new Array('p_1603','<br>P-1603 JADE<br>(B Base)'),
    new Array('p_5203','<br>P-5203 BRANDYWINE<br>(A Base)'),
    new Array('p_1710','<br>P-1710 BRAVO<br>(B Base)'),
    new Array('p_278','<br>P-278 SIERRA SUNRISE<br>(A Base)'),
    new Array('p_3721','<br>P-3721 CAVIAR<br>(B Base)'),
    new Array('p_146','<br>P-146 BORDEAUX<br>(B Base)'),
    new Array('p_873','<br>P-873 PUMPKIN SEED<br>(B Base)'),
    new Array('p_899','<br>P-899 TERRACOTA<br>(B Base)')
  );               

function getParameter(str, name) {
  var res = "";
  if (str.indexOf("?")!=-1) {
    str = str.substring(str.indexOf("?")+1, str.length);
    if (str.indexOf(name)!=-1) {
      if (str.indexOf("&"+name, str.indexOf(name)+name.length)!=-1)
        res = str.substring(str.indexOf("&"+name)+name.length+1, str.indexOf("&"+name))
   	  else
        res = str.substring(str.indexOf(name)+name.length+1, str.length);
      if (res.indexOf("&")!=-1)
        res = res.substring(0,res.indexOf("&"));
   	}
  }
  return res;
}

  ind = getParameter(self.document.location.href, 'ind');
  if (isNaN(ind) || (ind=='') || (ind<0) || (ind>arPhotos.length-1))
    ind = 0;

  var arImages = new Array();

function popup2(adresa, w, h){
  var l=(screen.availWidth-w)/2 , t=(screen.availHeight-h)/2;
  win=window.open(adresa,"bigimage","width="+w+",height="+h+",left="+l+",top="+t+",statusbar=no,toolbar=no,scrollbars=no,navbar=no");
  win.focus();
}  
  
  function showImageBig(number) {
   var width=340;
   var height=420;
   popup2('big_image2.htm?img='+'images/colors_special/popups/'+arPhotos[number][0]+'.jpg', width,height);
  } 
