function z(name,w,h,title){l=(screen.width-w)/2; t=(screen.height-h)/2; q=w-2;g=h-2; obj=open("", "404", "top="+t+", left="+l+", width="+q+", height="+g+", status=no, toolbar=no, menubar=no"); obj.document.write("<title>"+title+"</title><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><img src="+name+" width="+w+" height="+h+ "></body>"); obj.document.close(); }

function Cart(target)
{
l=(screen.width-600)/2;
t=(screen.height-500)/2;
window.open('shop/addcart.php?idcart='+target+'&count=1&mode=add','','top='+t+', left='+l+', resizable=no, scrollbars=yes, width=600, height=500');
window.focus;
}

function Sale(target)
{
l=(screen.width-355)/2;
t=(screen.height-520)/2;
window.open('sale.php?id='+target,'','top='+t+', left='+l+', resizable=no, scrollbars=no, width=355, height=520');
window.focus;
}

function ShowCart(target)
{
l=(screen.width-600)/2;
t=(screen.height-500)/2;
window.open('cart.php','','top='+t+', left='+l+', resizable=no, scrollbars=yes, width=600, height=500');
window.focus;
}

