/******************************************************************************
 * Jelen programkód tulajdonosa: FotoMarket Kft.                              *
 *                                                                            *
 * A kód részének vagy egészének felhasználása a tulajdonos írásos engedélye  *
 * nélkül SZIGORÚAN TILOS!                                                    *
 *                                                                            *
 * Copyright (c) FotoMarket Kft. 2001-2006. Minden jog fenntartva.            *
 ******************************************************************************/
function addToCart(id, pack){
  var command;
  if (pack) {
    command = 'func=newpack&packid='+id;
  } else {
    command = 'func=new&pid='+id;
  }

  var cart = window.open('http://www.fotomarket.hu/cart/index.php?'+command,'cart','toolbar=no,resizable=no,width=620,height=460,left='+Math.floor((screen.width-620)/2)+',top='+Math.floor((screen.height-460)/2));
  cart.focus();
}

function showCart(){
  var cart = window.open('http://www.fotomarket.hu/cart/index.php','cart','toolbar=no,resizable=no,width=620,height=460,left='+Math.floor((screen.width-620)/2)+',top='+Math.floor((screen.height-460)/2));
  cart.focus();
}

function addToCustomPack(id){
  command = 'func=add&pid='+id;

  var packwizard = window.open('http://www.fotomarket.hu/cart/packwizard.php?'+command,'packwizard','toolbar=no,resizable=no,width=570,height=680,left='+Math.floor((screen.width-570)/2)+',top='+Math.floor((screen.height-680)/2));
  packwizard.focus();
}

var sendproductwnd;
function sendProduct(prodid) {
  sendproductwnd = window.open('sendemail.php?pid='+prodid,'sendproductwnd','scrollbars=no,toolbar=no,resizable=no,width=400,height=250,top='+Math.floor((screen.height-350)/2)+',left='+Math.floor((screen.width-400)/2));
  sendproductwnd.focus();		
}

