/*
distributor js
*/

function updateManufacturers()
{
	var country_id = dijit.byId('country_id').attr('value');   
    var store = new dojox.data.QueryReadStore({url:manufacturersStoreUrl + '?country_id=' + country_id});
    // dojo.byId('manufacturer_id').readOnly  = false;
    dijit.byId('manufacturer_id').store = store;
}

var crossImage = '<img src="' + imageBaseUrl + '/interface/icons/cross.png" />';
var tickImage = '<img src="' + imageBaseUrl + '/interface/icons/tick.png" />';

var bDistributorCountryOk = true;

$(document).ready(function()
{
	var country_id = $('#country_id').val();
	if(country_id && country_id.length)
	{
		updateZones(country_id);
	}
	
	$('#country_id').change(function()
	{
		var image = '';
		var country_id = $('#country_id').val();
		
		if(country_id.length)
		{
			image = tickImage;
			bDistributorCountryOk = true;
		}
		else
		{
			image = crossImage;
			bDistributorCountryOk = false;
		}
		if($('#countryTickContainer').length)
		{
			$('#countryTickContainer').html(image);
		}
		else
		{
			$('#country_id').after('<span id="countryTickContainer">' + image + '</span>');
		}
	});
	
	$('#distributorRecord').submit(function()
    {
		if(!bDistributorCountryOk)
		{
			var offset = $("#country_id").offset()
			$(window).scrollTop(offset.top - 150);
			return false;
		}
    });
});