<!-- // Javascript

// global variables
var oForm;

function onLoad() {
	// set globals
	oForm = document.form;
	// init form
	//initialise();
}

function toggleCountry(countryIso) {
	if (countryIso == 'IN') {
		try {
			document.form.icountry.value = 'IN';
			document.form.language.value = 'en';
			document.form.cmd.value = 'refresh';
			document.form.submit();
		}
		catch (e) {
			window.location.href = 'http://www.feedback.philips.com/lighting/support/?country=IN&language=en';
		}
	}
	else return false;
}

function renew() {
	document.form.cmd.value = 'refresh';
	document.form.submit();
}

function disable( oField ) {
	oField.disabled = true;
}

function enable( oField ) {
	oField.disabled = false;
}

function go() {
	document.form.cmd.value = 'submit';
	document.form.submit();
}

// end Javascript -->
