/*
This script will redirect users away from changining false-static input fields like fabric, price and breed
on items that only have one option. Those are displayed as false input boxes on the site
*/

function switchfocus(sku){
	qty_element = 'qty_'+sku;
	if (document.getElementById(qty_element)) {
		document.getElementById(qty_element).focus();
		document.getElementById(qty_element).select();
	} else {
		alert('Error! '+qty_element+' is not set in the document.');
	}
	return true;
}