function SetQuantities(select_id, type)
{
	var select = document.getElementById(select_id);
	if(select)
	{
		/*var html = '';
		for(var i = 1; i <= 50; i++)
		{
			var value = 0;
			if(type == 'gift')
			{
				value = i*12;
			}
			else
			{
				value = i+11;
			}
			html += '<option value="'+ value +'">'+ value + '</option>';
		}
		select.innerHTML = html;*/
		
		select.options.length = 0;
		
		for(var i = 1; i <= 50; i++)
		{
			var value = 0;
			if(type == 'gift')
			{
				value = i*12;
			}
			else
			{
				value = i+11;
			}
			
			//var opt = document.createElement('OPTION');
			//opt.innerHTML = value;
			//opt.value = value;
			
			//alert(opt);
			
			//select.options.add(opt, select.options.length);
			
			select.options[select.options.length] = new Option(value, value);
		}
	}
}

function check_options(){}

function GoToURL(url)
{
	window.open(url);
}
