// JavaScript Document

function getSKU(el){
	var form = document.frmProductList;
	form.sku.value = el;
	form.submit();
}
