/**
 * IOTA
 *
 * 
 * Copyright (c)	James Benson - All rights reserved
 * 
 * You may not use or redistribute this code without prior written permission from the author, all other rights reserved
 *
 *
 *
 * @package			IOTA
 * @copyright		All Rights Reserved
 * @author			James Benson <james@jamesbenson.net>
 * @link			http://www.jamesbenson.co.uk
 */
function check_product_options( key, list )
{
	if(document.getElementById(key).value == '')
	{
		alert('Please choose a '+list+' option from the drop down menu');
		return false;
	}
}

