<!--

function openPopup(co,name,x,y)
 {
    if(!name){name='nowe'};
    if(!x){x=570};
    if(!y){y=520};
    config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+x+',height='+y+',scrollbars=no,resizable=no';
    window.open(co,name,config);
 }

function openImage(img,title,windowName,x,y)
 {
    var wp;
    config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+x+',height='+y+',scrollbars=no,resizable=no';
	content='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>'+title+'</title></head><body style="margin:0px;"><img src="'+img+'" alt="'+title+'" onclick="window.close();" /></body></html>';
		
	wp=window.open('',windowName,config);
	wp.document.open();
	wp.document.write(content);
	wp.document.close(); 
	wp.focus();
 }

 function addToBasket(prodId)
{
	var size=document.getElementById('size'+prodId);
	try {
		var ret=false;
		if(size.options.length>0)
		{
			if(size.options[size.selectedIndex].value != 'select') ret=true;
		}
		if(ret) window.location='index.php?module=shoppingCart&action=add&productId='+prodId+'&size='+size.options[size.selectedIndex].text;
		else alert('Please select size'); 
	}
	catch(e) {window.location='index.php?module=shoppingCart&action=add&productId='+prodId;}
}

//-->
