function show_info(theId, lang) {
	window_props = 'width=650, height=400';
	window_name = 'show_info';
	window.open('includes/show_vare_info_'+lang+'.php?vare='+theId, window_name, window_props);
}

function add_to_basket(theId, ref, lang) {
	contentAry = new Array();
	contentAry['vare'] = theId;
	contentAry['ref'] = ref;
	ser = new PHP_Serializer();
	ser_ary = ser.serialize(contentAry);
	get = ser.encode64(ser_ary);
	location_str = 'basket_'+lang+'.php?str='+get;
	document.location.href=location_str;
}