function addBasket(id) {
    location.href='/basket/?a=add&good_id='+id;
}

function popup(src) {
    var photo = open('','photo','toolbar=0,status=0,top=100,left=100,width=450,height=450');
    photo.document.open();
    photo.document.write('<html><head><title>Фото</title></head><body style="margin:0; padding:0;" onLoad="w=document.images[0].width;h=document.images[0].height; self.resizeTo(w+50,h+80);"><table width="100%" height="100%"><tr><td align="center"><a href="javascript:self.close();"><img src="'+src+'" border="0" alt="Закрыть"></a></td></tr></table></body></html>');
    photo.document.close();
    photo.focus();
}

function enlarge(url) {

	var obj = document.createElement('div')
	var attr = document.createAttribute('id')
	attr.value = 'good'
	obj.setAttributeNode(attr)
	
	obj.innerHTML = '<div align="right"><a href="javascript:void(0);" title="Закрыть окно">[ x ]</a></div>';

	var img = document.createElement('img')
	img.src = url
	img.alt = 'Закрыть окно';

	w = img.width+40;
	h = img.height;

	t = 100;
	l = (document.body.clientWidth-w)/2;

	obj.appendChild(img);
	obj.style.top = t+'px';
	obj.style.left = l+'px';
	
	img.onload = function() {
		w = img.width+40;
		h = img.height;
		obj.style.top = t+'px';
		obj.style.left = l+'px';		
	}
	
	document.body.appendChild(obj);

	obj.onclick = function() {
		obj.style.display = 'none'
	}

}
