function openPhoto(id)
{
        hand=window.open('/img.php?id='+id, id, 'top=100,left=100, height=300,width=300,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=yes');
        hand.focus();
}

function openKurs(price)
{
        hand=window.open('/kurs.php?rouble=1&price='+price, price, 'top=300,left=300, height=100,width=100,status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no');
        hand.focus();
}

function openWin(id,cat)
{
	var h=screen.height-100;
        hand=window.open('/item.php?id='+id+'&cat='+cat, id, 'top=2,left=40, height='+h+',width=610,status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=no');
        hand.focus();
}

function openbasket()
{
        var h=screen.height-100;
        var tmp=Math.random()
        hand=window.open('/show_basket.php?tmp='+tmp, "Корзина", 'left=40, height='+h+',width=645,status=yes,toolbar=no,menubar=no,scrollbars=yes,resizable=yes');
        hand.focus();
}