function pop_up(url) {
  var popup = window.open(url,'popup','width=500,height=320,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');	
  if (window.focus) {
	zoom_popup.focus();
  }
}

function zoom(name, picture) {
  var zoom_popup = window.open('','popup','width=500,height=320,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
  zoom_popup.document.write(
	'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">'+
	'<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><link href="styles.css" rel="stylesheet" type="text/css" />'+
	'<title>'+name+'</title></head><body><table class="thumbtd" width="100%" cellspacing="0" cellpadding="4" border="0"><tr><td align="center" valign="middle">'+
	'<br />'+name+'<br /><img class="thumb" src="pictures/'+picture+'/full.jpg" border="0" alt="'+name+'" onClick="javascript:window.close();" style="cursor: pointer; cursor: hand;" /><br /><br />'+
	'</td></tr></table></body></html>'						
  );
  zoom_popup.document.close();
  if (window.focus) {
	zoom_popup.focus();
  }
}

function list_products(group, lng) {
  var list_popup = window.open('pricelist.php?group='+group+'&lng='+lng,'popup','width=480,height=320,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
  if (window.focus) {
	list_popup.focus();
  }
}

{
	
}

