$('#download').submit( function() {
	$.ajax( 
		{
			url: '/wedding/sku_lookup.php',
			async: false,
			type: 'post',
			data:{ sku: $('#sku').val() },
			success: function response(val) {
				var lines=val.split("\n");
				if(lines[0]=='OK') {
					MM_openBrWindow('popup.php?section='+lines[1]+'&num='+lines[2],'mywindow','menubar=1,resizable=1,width=800,height=620');
					document.location.replace("products.php?id="+lines[1]);
				} else {
					alert("Oops we can't find a product with that SKU,\n please check the number and enter it again.");
				}			
			}
		}
	); 

	return false;
});